summaryrefslogtreecommitdiffstats
path: root/examples/tour
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-10-05 05:32:56 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-10-05 05:32:56 +0200
commite82e96e6ad5a76faf5e09a6805d406af13e312c5 (patch)
tree1e0f2b50f664b757e3ffbbd868e017826fd4e9d3 /examples/tour
parent67d3fe67f312c4dfe9fe4af0f0cbc7cb23c30072 (diff)
downloadiced-e82e96e6ad5a76faf5e09a6805d406af13e312c5.tar.gz
iced-e82e96e6ad5a76faf5e09a6805d406af13e312c5.tar.bz2
iced-e82e96e6ad5a76faf5e09a6805d406af13e312c5.zip
Update welcome step of `tour` example
Diffstat (limited to 'examples/tour')
-rw-r--r--examples/tour/src/tour.rs12
1 files changed, 8 insertions, 4 deletions
diff --git a/examples/tour/src/tour.rs b/examples/tour/src/tour.rs
index 04740fce..105ec271 100644
--- a/examples/tour/src/tour.rs
+++ b/examples/tour/src/tour.rs
@@ -294,13 +294,17 @@ impl<'a> Step {
2D game engine for Rust.",
))
.push(Text::new(
- "Iced does not provide a built-in renderer. This example runs \
- on WebAssembly using dodrio, an experimental VDOM library \
- for Rust.",
+ "Iced does not provide a built-in renderer. On native \
+ platforms, this example runs on a fairly simple renderer \
+ built on top of ggez, another game library.",
+ ))
+ .push(Text::new(
+ "Additionally, this tour can also run on WebAssembly thanks \
+ to dodrio, an experimental VDOM library for Rust.",
))
.push(Text::new(
"You will need to interact with the UI in order to reach the \
- end!",
+ end of this tour!",
))
}