diff options
author | 2023-09-20 05:37:20 +0200 | |
---|---|---|
committer | 2023-09-20 05:37:20 +0200 | |
commit | 33d780f691829ecd32f3a218008fcb40e005deb4 (patch) | |
tree | 83f20609fa20d534ef8bd32b3851cae03cbadbb2 /examples/download_progress | |
parent | 432d9f5f97a7312878f2f86ead13b6742638f7e8 (diff) | |
download | iced-33d780f691829ecd32f3a218008fcb40e005deb4.tar.gz iced-33d780f691829ecd32f3a218008fcb40e005deb4.tar.bz2 iced-33d780f691829ecd32f3a218008fcb40e005deb4.zip |
Run `cargo fmt`
Diffstat (limited to 'examples/download_progress')
-rw-r--r-- | examples/download_progress/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/download_progress/src/main.rs b/examples/download_progress/src/main.rs index e52c604c..a2fcb275 100644 --- a/examples/download_progress/src/main.rs +++ b/examples/download_progress/src/main.rs @@ -123,7 +123,7 @@ impl Download { | State::Errored { .. } => { self.state = State::Downloading { progress: 0.0 }; } - State::Downloading{ .. } => {} + State::Downloading { .. } => {} } } |