Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
indexds committed Dec 27, 2024
1 parent 77c4e8d commit ff7509a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/http/wg_routes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ pub fn set_routes(
return Err(anyhow::anyhow!("Wifi not connected!"));
}

//Necessary, we need to lock wifi later
// Necessary, we need to lock wifi later
drop(wifi_check);

let mut body = Vec::new();
Expand Down
2 changes: 1 addition & 1 deletion src/utils/heapless.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::ffi::CString;
use heapless::String;
use serde::Deserialize;

//This wrapper is necessary to juggle wifi stuff
// This wrapper is necessary to juggle wifi stuff
#[derive(Deserialize, Default)]
pub struct HeaplessString<const N: usize>(pub String<N>);

Expand Down

0 comments on commit ff7509a

Please sign in to comment.