Update welcome step of tour example

This commit is contained in:
Héctor Ramón Jiménez 2019-10-05 05:32:56 +02:00
parent 67d3fe67f3
commit e82e96e6ad

View file

@ -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!",
))
}