Fix dangling urls (#2728)

This commit is contained in:
sephiron99 2022-06-19 21:23:33 +09:00 committed by GitHub
parent 475cf20a86
commit 0bdbd95328
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 7 additions and 7 deletions

View File

@ -17,7 +17,7 @@ trunk serve --release
## Concepts
The example uses [`gloo::timers`](https://gloo-rs.web.app/docs/timer) implementation of `setInterval` to drive the Yew game loop.
The example uses [`gloo::timers`](https://docs.rs/gloo-timers/latest/gloo_timers/) implementation of `setInterval` to drive the Yew game loop.
## Improvements

View File

@ -7,7 +7,7 @@ The contents of the selected file are then rendered to the page either as a whol
## Concepts
Demonstrates reading from files in Yew with the help of [`gloo::file`](https://gloo-rs.web.app/docs/file).
Demonstrates reading from files in Yew with the help of [`gloo::file`](https://docs.rs/gloo-file/latest/gloo_file/).
## Improvements

View File

@ -7,7 +7,7 @@ This is an implementation of [TodoMVC](http://todomvc.com/) for Yew using functi
## Concepts
- Uses [`function_components`](https://yew.rs/docs/next/concepts/function-components/introduction)
- Uses [`gloo_storage`](https://gloo-rs.web.app/docs/storage) to persist the state
- Uses [`gloo_storage`](https://docs.rs/gloo-storage/latest/gloo_storage/) to persist the state
## Improvements

View File

@ -15,5 +15,5 @@ trunk serve --release
## Concepts
- Uses [`gloo_timer`](https://gloo-rs.web.app/docs/timer) to automatically step the simulation.
- Uses [`gloo_timer`](https://docs.rs/gloo-timers/latest/gloo_timers/) to automatically step the simulation.
- Logs to the console using the [`weblog`](https://crates.io/crates/weblog) crate.

View File

@ -6,8 +6,8 @@ This is a technical demonstration for how to use timeouts and intervals.
## Concepts
The example mainly demonstrates the use of [`gloo_timer`](https://gloo-rs.web.app/docs/timer) and
[`gloo_console_timer`](https://gloo-rs.web.app/docs/console-timer) but also makes use of some
The example mainly demonstrates the use of [`gloo_timer`](https://docs.rs/gloo-timers/ ) and
[`gloo_console_timer`](https://docs.rs/gloo-console/latest/gloo_console/struct.Timer.html) but also makes use of some
more advanced web console features.
## Improvements

View File

@ -9,7 +9,7 @@ including: all entries, entered text and chosen filter.
## Concepts
- Uses [`gloo_storage`](https://gloo-rs.web.app/docs/storage) to persist the state
- Uses [`gloo_storage`](https://docs.rs/gloo-storage/latest/gloo_storage/) to persist the state
- [`Refs`] are used to manipulate DOM elements after they're rendered (to automatically focus input fields for instance)
## Improvements