diff options
| author | 2023-09-19 01:31:10 -0400 | |
|---|---|---|
| committer | 2023-09-19 01:32:56 -0400 | |
| commit | 3d6b9637c3b1c9f3c654a3ecef7a247cfd6edef3 (patch) | |
| tree | 70ffb135b91c824caa37a0fe4742179088e5a638 /examples/game_of_life | |
| parent | 4613eb26cba3ded83f25ebdefd01c983c79a9d59 (diff) | |
| download | iced-3d6b9637c3b1c9f3c654a3ecef7a247cfd6edef3.tar.gz iced-3d6b9637c3b1c9f3c654a3ecef7a247cfd6edef3.tar.bz2 iced-3d6b9637c3b1c9f3c654a3ecef7a247cfd6edef3.zip  | |
Chore: Inline format args for ease of reading
A minor cleanup to inline all simple cases of format arguments. Makes the format strings just a bit easier to read.
Diffstat (limited to '')
| -rw-r--r-- | examples/game_of_life/src/main.rs | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/game_of_life/src/main.rs b/examples/game_of_life/src/main.rs index e451cb06..21a21142 100644 --- a/examples/game_of_life/src/main.rs +++ b/examples/game_of_life/src/main.rs @@ -610,8 +610,7 @@ mod grid {                  frame.fill_text(Text {                      content: format!( -                        "{} cell{} @ {:?} ({})", -                        cell_count, +                        "{cell_count} cell{} @ {:?} ({})",                          if cell_count == 1 { "" } else { "s" },                          self.last_tick_duration,                          self.last_queued_ticks  | 
