From c40f4d05b57706c6b6aca365836feed5f96418a7 Mon Sep 17 00:00:00 2001 From: Tyler Anton Date: Sun, 24 Feb 2019 17:13:24 -0800 Subject: [PATCH] Fix typo in Js Objects in Rust --- guide/src/contributing/design/js-objects-in-rust.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/src/contributing/design/js-objects-in-rust.md b/guide/src/contributing/design/js-objects-in-rust.md index 7408e62c..fac9a5ff 100644 --- a/guide/src/contributing/design/js-objects-in-rust.md +++ b/guide/src/contributing/design/js-objects-in-rust.md @@ -18,7 +18,7 @@ pushed. JS objects are then only removed from the bottom of the stack as well. Removal is simply storing null then incrementing a counter. Because of the "stack-y" -nature of this sceheme it only works for when wasm doesn't hold onto a JS object +nature of this scheme it only works for when wasm doesn't hold onto a JS object (aka it only gets a "reference" in Rust parlance). Let's take a look at an example.