diff options
Diffstat (limited to 'web/examples')
-rw-r--r-- | web/examples/tour/index.html | 2 | ||||
l--------- | web/examples/tour/resources/ferris.png | 1 | ||||
-rw-r--r-- | web/examples/tour/src/tour.rs | 4 |
3 files changed, 4 insertions, 3 deletions
diff --git a/web/examples/tour/index.html b/web/examples/tour/index.html index a639a6cb..527cc54c 100644 --- a/web/examples/tour/index.html +++ b/web/examples/tour/index.html @@ -2,7 +2,7 @@ <html> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8"/> - <title>Tour - Iced Web</title> + <title>Web Tour - Iced</title> </head> <body> <script type="module"> diff --git a/web/examples/tour/resources/ferris.png b/web/examples/tour/resources/ferris.png new file mode 120000 index 00000000..9c4fb51c --- /dev/null +++ b/web/examples/tour/resources/ferris.png @@ -0,0 +1 @@ +../../../../examples/resources/ferris.png
\ No newline at end of file diff --git a/web/examples/tour/src/tour.rs b/web/examples/tour/src/tour.rs index 6c24622e..9a60e092 100644 --- a/web/examples/tour/src/tour.rs +++ b/web/examples/tour/src/tour.rs @@ -295,8 +295,8 @@ impl<'a> Step { )) .push(Text::new( "Iced does not provide a built-in renderer. This example runs \ - on a fairly simple renderer built on top of ggez, another \ - game library.", + on WebAssembly using dodrio, an experimental VDOM library \ + for Rust.", )) .push(Text::new( "You will need to interact with the UI in order to reach the \ |