Skip to content

Commit 4415a93

Browse files
committed
修订错误
1 parent e9ff296 commit 4415a93

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

docs/intro.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -55,20 +55,20 @@ node --harmony
5555
```bash
5656

5757
$ node --v8-options | grep harmony
58-
--harmony_typeof (enable harmony semantics for typeof)
59-
--harmony_scoping (enable harmony block scoping)
60-
--harmony_modules (enable harmony modules (implies block scoping))
61-
--harmony_symbols (enable harmony symbols (a.k.a. private names))
62-
--harmony_proxies (enable harmony proxies)
63-
--harmony_collections (enable harmony collections (sets, maps, and weak maps))
64-
--harmony_observation (enable harmony object observation (implies harmony collections)
65-
--harmony_generators (enable harmony generators)
66-
--harmony_iteration (enable harmony iteration (for-of))
67-
--harmony_numeric_literals (enable harmony numeric literals (0o77, 0b11))
68-
--harmony_strings (enable harmony string)
69-
--harmony_arrays (enable harmony arrays)
70-
--harmony_maths (enable harmony math functions)
71-
--harmony (enable all harmony features (except typeof))
58+
--harmony_typeof
59+
--harmony_scoping
60+
--harmony_modules
61+
--harmony_symbols
62+
--harmony_proxies
63+
--harmony_collections
64+
--harmony_observation
65+
--harmony_generators
66+
--harmony_iteration
67+
--harmony_numeric_literals
68+
--harmony_strings
69+
--harmony_arrays
70+
--harmony_maths
71+
--harmony
7272

7373
```
7474

docs/iterator.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ const arr = ['red', 'green', 'blue'];
7575
for(let v of arr) {
7676
console.log(v);
7777
}
78-
\\ red
79-
\\ green
80-
\\ blue
78+
// red
79+
// green
80+
// blue
8181

8282
```
8383

0 commit comments

Comments
 (0)