Skip to content

Commit

Permalink
chore: fix clippy problem
Browse files Browse the repository at this point in the history
  • Loading branch information
Decodetalkers committed Aug 4, 2024
1 parent 5e4b874 commit d6cf627
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sessionlockev/examples/simplelock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use sessionlockev::reexport::*;
use sessionlockev::*;

fn main() {
let mut ev: WindowState<()> = WindowState::new().build().unwrap();
let ev: WindowState<()> = WindowState::new().build().unwrap();

let mut virtual_keyboard_manager = None;
ev.running(|event, _ev, _index| {
Expand Down
2 changes: 1 addition & 1 deletion sessionlockev/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
//! const ESC_KEY: u32 = 1;
//!
//! fn main() {
//! let mut ev: WindowState<()> = WindowState::new();
//! let ev: WindowState<()> = WindowState::new();
//!
//! let mut virtual_keyboard_manager = None;
//! ev.running(|event, _ev, _index| {
Expand Down

0 comments on commit d6cf627

Please sign in to comment.