diff options
author | 2023-01-10 16:12:51 -0800 | |
---|---|---|
committer | 2023-01-10 21:35:55 -0800 | |
commit | 4066f89ce72d6dee4fdf3f0e1dcde93852029f81 (patch) | |
tree | 11b1d5b7c0b8f9d7fa5d297e138a1e88deb1d0c0 /examples/lazy | |
parent | 2e3a69be31aa07878b0139146cd113a787731393 (diff) | |
download | iced-4066f89ce72d6dee4fdf3f0e1dcde93852029f81.tar.gz iced-4066f89ce72d6dee4fdf3f0e1dcde93852029f81.tar.bz2 iced-4066f89ce72d6dee4fdf3f0e1dcde93852029f81.zip |
cleanup `Lazy` examples
Diffstat (limited to 'examples/lazy')
-rw-r--r-- | examples/lazy/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/lazy/src/main.rs b/examples/lazy/src/main.rs index 8845b874..4413262d 100644 --- a/examples/lazy/src/main.rs +++ b/examples/lazy/src/main.rs @@ -46,7 +46,7 @@ impl Sandbox for App { } fn title(&self) -> String { - String::from("Cached - Iced") + String::from("Lazy - Iced") } fn update(&mut self, message: Message) { |