Skip to content

Commit 0bdbd95

Browse files
authored
Fix dangling urls (yewstack#2728)
1 parent 475cf20 commit 0bdbd95

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

examples/boids/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ trunk serve --release
1717

1818
## Concepts
1919

20-
The example uses [`gloo::timers`](https://gloo-rs.web.app/docs/timer) implementation of `setInterval` to drive the Yew game loop.
20+
The example uses [`gloo::timers`](https://docs.rs/gloo-timers/latest/gloo_timers/) implementation of `setInterval` to drive the Yew game loop.
2121

2222
## Improvements
2323

examples/file_upload/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The contents of the selected file are then rendered to the page either as a whol
77

88
## Concepts
99

10-
Demonstrates reading from files in Yew with the help of [`gloo::file`](https://gloo-rs.web.app/docs/file).
10+
Demonstrates reading from files in Yew with the help of [`gloo::file`](https://docs.rs/gloo-file/latest/gloo_file/).
1111

1212
## Improvements
1313

examples/function_todomvc/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This is an implementation of [TodoMVC](http://todomvc.com/) for Yew using functi
77
## Concepts
88

99
- Uses [`function_components`](https://yew.rs/docs/next/concepts/function-components/introduction)
10-
- Uses [`gloo_storage`](https://gloo-rs.web.app/docs/storage) to persist the state
10+
- Uses [`gloo_storage`](https://docs.rs/gloo-storage/latest/gloo_storage/) to persist the state
1111

1212
## Improvements
1313

examples/game_of_life/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ trunk serve --release
1515

1616
## Concepts
1717

18-
- Uses [`gloo_timer`](https://gloo-rs.web.app/docs/timer) to automatically step the simulation.
18+
- Uses [`gloo_timer`](https://docs.rs/gloo-timers/latest/gloo_timers/) to automatically step the simulation.
1919
- Logs to the console using the [`weblog`](https://crates.io/crates/weblog) crate.

examples/timer/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ This is a technical demonstration for how to use timeouts and intervals.
66

77
## Concepts
88

9-
The example mainly demonstrates the use of [`gloo_timer`](https://gloo-rs.web.app/docs/timer) and
10-
[`gloo_console_timer`](https://gloo-rs.web.app/docs/console-timer) but also makes use of some
9+
The example mainly demonstrates the use of [`gloo_timer`](https://docs.rs/gloo-timers/ ) and
10+
[`gloo_console_timer`](https://docs.rs/gloo-console/latest/gloo_console/struct.Timer.html) but also makes use of some
1111
more advanced web console features.
1212

1313
## Improvements

examples/todomvc/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ including: all entries, entered text and chosen filter.
99

1010
## Concepts
1111

12-
- Uses [`gloo_storage`](https://gloo-rs.web.app/docs/storage) to persist the state
12+
- Uses [`gloo_storage`](https://docs.rs/gloo-storage/latest/gloo_storage/) to persist the state
1313
- [`Refs`] are used to manipulate DOM elements after they're rendered (to automatically focus input fields for instance)
1414

1515
## Improvements

0 commit comments

Comments
 (0)