diff options
author | 2020-01-22 11:21:29 +0100 | |
---|---|---|
committer | 2020-01-22 11:21:29 +0100 | |
commit | 63fc539a251b00333fb140717180b315b119c886 (patch) | |
tree | 65cdfb1875a3d488cfc791925e8013cad384476e /examples/counter | |
parent | 3124450aff0894a775808f6e7752d7fa42740dfb (diff) | |
download | iced-63fc539a251b00333fb140717180b315b119c886.tar.gz iced-63fc539a251b00333fb140717180b315b119c886.tar.bz2 iced-63fc539a251b00333fb140717180b315b119c886.zip |
Make title consistent in `counter` example
Diffstat (limited to 'examples/counter')
-rw-r--r-- | examples/counter/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/counter/src/main.rs b/examples/counter/src/main.rs index d9311076..bde0ea94 100644 --- a/examples/counter/src/main.rs +++ b/examples/counter/src/main.rs @@ -25,7 +25,7 @@ impl Sandbox for Counter { } fn title(&self) -> String { - String::from("A simple counter") + String::from("Counter - Iced") } fn update(&mut self, message: Message) { |