aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorMihai Bazon <mihai@bazon.net>2013-10-30 14:13:10 +0200
committerMihai Bazon <mihai@bazon.net>2013-10-30 14:13:30 +0200
commit263577d5eb2fc4f58ce7fe0c92007031fbc7f526 (patch)
tree324f1f13f0fc6886e849082b5b7fbd1655177644 /README.md
parent63287c0e681154698a2aeb73380ea9b40260c6b0 (diff)
downloadtracifyjs-263577d5eb2fc4f58ce7fe0c92007031fbc7f526.tar.gz
tracifyjs-263577d5eb2fc4f58ce7fe0c92007031fbc7f526.zip
[README] Fix #278
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 72348d10..f2f2f212 100644
--- a/README.md
+++ b/README.md
@@ -261,7 +261,7 @@ when this flag is on:
- `String(exp)` or `exp.toString()` → `"" + exp`
- `new Object/RegExp/Function/Error/Array (...)` → we discard the `new`
- `typeof foo == "undefined"` → `foo === void 0`
-- `void 0` → `"undefined"` (if there is a variable named "undefined" in
+- `void 0` → `undefined` (if there is a variable named "undefined" in
scope; we do it because the variable name will be mangled, typically
reduced to a single character).