From 0452fbc639dc6ea182620e0bc12146d96e86f78c Mon Sep 17 00:00:00 2001 From: Garrett Steffen Date: Fri, 16 Nov 2018 19:22:19 -0600 Subject: [PATCH] Fixed link to the wrong crate --- guide/src/web-sys/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/src/web-sys/index.md b/guide/src/web-sys/index.md index 68ac1e95..6b2104c3 100644 --- a/guide/src/web-sys/index.md +++ b/guide/src/web-sys/index.md @@ -13,11 +13,11 @@ It's sort of like the `libc` crate, but for the Web. It does *not* include the JavaScript APIs that are guaranteed to exist in all standards-compliant ECMAScript environments, such as `Array`, `Date`, and -`eval`. Bindings for these APIs can be found in [the `js-sys` crate][js-sys]. +`eval`. Bindings for these APIs can be found in [the `web-sys` crate][web-sys]. ## API Documentation [**Read the `web-sys` API documentation here!**][api] [api]: https://rustwasm.github.io/wasm-bindgen/api/web_sys/ -[js-sys]: https://crates.io/crates/js-sys +[web-sys]: https://crates.io/crates/web-sys