clarify wording (#1931)
authorolsonpm <olsonpm@users.noreply.github.com>
Sat, 13 May 2017 04:54:01 +0000 (23:54 -0500)
committerAlex Lam S.L <alexlamsl@gmail.com>
Sat, 13 May 2017 04:54:01 +0000 (12:54 +0800)
README.md

index 205395f..33a9c71 100644 (file)
--- a/README.md
+++ b/README.md
@@ -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.
 
 - `side_effects` -- default `false`. Pass `true` to potentially drop functions
-marked as "pure".  (A function is marked as "pure" via the comment annotation
-`/* @__PURE__ */` or `/* #__PURE__ */`)
+marked as "pure".  A function call is marked as "pure" if a comment annotation
+`/*@__PURE__*/` or `/*#__PURE__*/` immediately precedes the call. For example:
+`/*@__PURE__*/foo()`;
 
 
 ### The `unsafe` option