Skip to content

Commit f90f53c

Browse files
committed
Fix some links in the guide
Closes #569
1 parent 68ef6b4 commit f90f53c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

guide/src/web-sys/supporting-more-web-apis.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,20 +47,20 @@
4747
```
4848

4949
* <input type="checkbox"/> If the new API is **not** showing up in the docs,
50-
rebuild the `web-sys` crate [with logging enabled](/web-sys/logging.html)
50+
rebuild the `web-sys` crate [with logging enabled](web-sys/logging.html)
5151
and look for warning messages that mention your new API. Figure out why
5252
bindings weren't generated and then add support to `wasm_bindgen_webidl` for
5353
whatever is needed to generate your API's bindings.
54-
55-
> You might find it helpful to view the generated rust bindings, to see if
56-
they are what you would expect. The file will be located at
54+
55+
> You might find it helpful to view the generated rust bindings, to see if
56+
they are what you would expect. The file will be located at
5757
`target/wasm32-unknown-unknown/debug/build/web-sys-xxx/out/bindings.rs`,
5858
where `xxx` is a combinations of numbers and letters that represents your
5959
build. This file is pretty unintelligable until you run `rustfmt` on it, like
6060
`rustfmt target/wasm32-unknown-unknown/debug/build/web-sys-xxx/out/bindings.rs`.
6161

6262
4. <input type="checkbox"/> Add a simple test for your new API to
6363
`crates/web-sys/tests/all/`. See the [`web-sys` testing
64-
documentation](/web-sys/testing.html) for details.
64+
documentation](web-sys/testing.html) for details.
6565

6666
5. <input type="checkbox"/> Send a pull request! 😊

guide/src/web-sys/testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ cargo test
1010

1111
These tests all use a headless Firefox browser. See the [*Headless Browser
1212
Tests* section for details on setup and
13-
configuration.](../contributing.html#headless-browser-tests)
13+
configuration.](contributing.html#headless-browser-tests)
1414

1515
## Grouping Tests
1616

0 commit comments

Comments
 (0)