From 4561e1fb499b069a161b448bce6747ba4898523d Mon Sep 17 00:00:00 2001 From: inokawa <48897392+inokawa@users.noreply.github.com> Date: Sat, 7 Nov 2020 02:40:26 +0900 Subject: [PATCH] Fix typo --- guide/src/reference/arbitrary-data-with-serde.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/src/reference/arbitrary-data-with-serde.md b/guide/src/reference/arbitrary-data-with-serde.md index 54fb9e747e4..7cd43355445 100644 --- a/guide/src/reference/arbitrary-data-with-serde.md +++ b/guide/src/reference/arbitrary-data-with-serde.md @@ -1,6 +1,6 @@ # Serializing and Deserializing Arbitrary Data Into and From `JsValue` with Serde -It's possible to pass arbirtrary data from Rust to JavaScript by serializing it +It's possible to pass arbitrary data from Rust to JavaScript by serializing it to JSON with [Serde](https://github.com/serde-rs/serde). `wasm-bindgen` includes the `JsValue` type, which streamlines serializing and deserializing.