diff options
author | 2023-09-20 04:11:52 +0200 | |
---|---|---|
committer | 2023-09-20 04:11:52 +0200 | |
commit | 34f07b60273d6cfe13834af54cd0e24d34569387 (patch) | |
tree | 8d53809866fd0f8a6ca754dd26fb890c6249b788 /examples/clock | |
parent | 9991052ce5617abf0f270bc9a74627ab6d45b35d (diff) | |
download | iced-34f07b60273d6cfe13834af54cd0e24d34569387.tar.gz iced-34f07b60273d6cfe13834af54cd0e24d34569387.tar.bz2 iced-34f07b60273d6cfe13834af54cd0e24d34569387.zip |
Fix `clippy::semicolon_if_nothing_returned`
Diffstat (limited to 'examples/clock')
-rw-r--r-- | examples/clock/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/clock/src/main.rs b/examples/clock/src/main.rs index fae77bc0..eec70dde 100644 --- a/examples/clock/src/main.rs +++ b/examples/clock/src/main.rs @@ -141,7 +141,7 @@ impl<Message> canvas::Program<Message, Renderer> for Clock { frame.with_save(|frame| { frame.rotate(hand_rotation(self.now.second(), 60)); frame.stroke(&long_hand, thin_stroke()); - }) + }); }); vec![clock] |