summaryrefslogtreecommitdiffstats
path: root/examples/tour/src/tour.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/tour/src/tour.rs')
-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!",
))
}