Update docs/src/tutorials/npm-browser-packages/template-deep-dive/cargo-toml.md

Co-Authored-By: ashleygwilliams <ashley666ashley@gmail.com>
master
Nick Fitzgerald 6 years ago committed by GitHub
parent a4c9e2a3cd
commit 3a4b7f08f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      docs/src/tutorials/npm-browser-packages/template-deep-dive/cargo-toml.md

@ -99,7 +99,7 @@ wee_alloc = { version = "0.4.2", optional = true }
```
In our code, we'll mark certain parts of code as running only if certain `[features]`
are enabled, specifically, `console_error_panic_hook` and `weealloc`. By default,
are enabled, specifically, `console_error_panic_hook` and `wee_alloc`. By default,
only `console_error_panic_hook` is enabled. To disable or enable either feature, by
default, we can edit the `default` vector under `[features]`.

Loading…
Cancel
Save