[README] Fix #278
authorMihai Bazon <mihai@bazon.net>
Wed, 30 Oct 2013 12:13:10 +0000 (14:13 +0200)
committerMihai Bazon <mihai@bazon.net>
Wed, 30 Oct 2013 12:13:30 +0000 (14:13 +0200)
README.md

index 72348d1..f2f2f21 100644 (file)
--- 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).