clarify wording (#1931)

This commit is contained in:
olsonpm
2017-05-12 23:54:01 -05:00
committed by Alex Lam S.L
parent c391576d52
commit 9e29b6dad2

View File

@@ -410,8 +410,9 @@ to set `true`; it's effectively a shortcut for `foo=true`).
being compressed into `1/0`, which may cause performance issues on Chrome. being compressed into `1/0`, which may cause performance issues on Chrome.
- `side_effects` -- default `false`. Pass `true` to potentially drop functions - `side_effects` -- default `false`. Pass `true` to potentially drop functions
marked as "pure". (A function is marked as "pure" via the comment annotation marked as "pure". A function call is marked as "pure" if a comment annotation
`/* @__PURE__ */` or `/* #__PURE__ */`) `/*@__PURE__*/` or `/*#__PURE__*/` immediately precedes the call. For example:
`/*@__PURE__*/foo()`;
### The `unsafe` option ### The `unsafe` option