From 13c2fc64b3fb0ceba3f2fe8f6bec61923ba1d4ce Mon Sep 17 00:00:00 2001 From: pione30 Date: Sat, 8 May 2021 19:56:03 +0900 Subject: [PATCH] fix(docs): remove duplicated "is" --- .../npm-browser-packages/template-deep-dive/wee_alloc.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/tutorials/npm-browser-packages/template-deep-dive/wee_alloc.md b/docs/src/tutorials/npm-browser-packages/template-deep-dive/wee_alloc.md index 8dd741d4..68102e6d 100644 --- a/docs/src/tutorials/npm-browser-packages/template-deep-dive/wee_alloc.md +++ b/docs/src/tutorials/npm-browser-packages/template-deep-dive/wee_alloc.md @@ -15,7 +15,7 @@ responsive. [An analysis](http://fitzgeraldnick.com/2018/02/09/wee-alloc.html) suggests that over half of the bare minimum WebAssembly memory footprint is required by Rust's default memory allocator. Yet, WebAssembly code often does not require a sophisticated allocator, since it often just requests a couple of large initial allocations. `wee_alloc` trades off size for speed. It has a tiny code-size -footprint, but it is is not competitive in terms of performance with the +footprint, but it is not competitive in terms of performance with the default global allocator, for example. For even more details, see the [`wee_alloc`