summaryrefslogtreecommitdiffstats
path: root/examples/download_progress
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2023-09-20 05:37:20 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2023-09-20 05:37:20 +0200
commit33d780f691829ecd32f3a218008fcb40e005deb4 (patch)
tree83f20609fa20d534ef8bd32b3851cae03cbadbb2 /examples/download_progress
parent432d9f5f97a7312878f2f86ead13b6742638f7e8 (diff)
downloadiced-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.rs2
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 { .. } => {}
}
}