Skip to content

Commit 6d5854a

Browse files
dakata1337xarvic
authored andcommitted
Fixed readme.md links (linebender#2167)
1 parent 8ca0466 commit 6d5854a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

druid/examples/readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This example shows how to make a simple animation using `Event::AnimFrame`.
1515
```
1616
cargo run --example async_event
1717
```
18-
Demonstrates receiving data from some outside source, and updating the UI in response. This is similar to [blocking function](#Blocking Function) but here the data source is fully independent, and runs for the lifetime of the program.
18+
Demonstrates receiving data from some outside source, and updating the UI in response. This is similar to [blocking function](#blocking-function) but here the data source is fully independent, and runs for the lifetime of the program.
1919

2020
## Blocking Function
2121
```
@@ -24,7 +24,7 @@ cargo run --example blocking_function
2424
Sometimes you need to fetch some data from disk or from the internet,
2525
but you should never block the UI thread with long running operations!
2626
Instead you should run this task in a separate thread, and have it send
27-
you the data as it arrives. This is very similar to [async event](#Async Event)
27+
you the data as it arrives. This is very similar to [async event](#async-event)
2828
except the event is initiated by the main thread.
2929

3030
## Cursor
@@ -60,7 +60,7 @@ For more info and prerequistes see [druid/examples/hello_web/README.md](druid/ex
6060
cd druid/examples/hello_web
6161
wasm-pack build --out-dir pkg --out-name hello_web
6262
```
63-
[View at http://localhost:8000](http://localhost:8000].
63+
[View at http://localhost:8000](http://localhost:8000).
6464

6565
This is an example of how to get almost any druid application can be used on the web. This is just the hello_world example but should work for all of them.
6666

@@ -70,7 +70,7 @@ For more info and prerequistes see [druid/examples/web/README.md](druid/examples
7070
cd druid/examples/web
7171
wasm-pack build --out-dir pkg --out-name web
7272
```
73-
[View at http://localhost:8000](http://localhost:8000].
73+
[View at http://localhost:8000](http://localhost:8000).
7474

7575
Simple web app.
7676

0 commit comments

Comments
 (0)