Skip to content

Commit 611a3b3

Browse files
acustikozlitinaelja
authored andcommitted
Fix syntax error and missing import in docs (immutable-js#1500)
1 parent a22ece7 commit 611a3b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -556,8 +556,8 @@ Any collection can be converted to a lazy Seq with `Seq()`.
556556

557557
<!-- runkit:activate -->
558558
```js
559-
const { Map } = require('immutable')
560-
const map = Map({ a: 1, b: 2, c: 3 }
559+
const { Map, Seq } = require('immutable')
560+
const map = Map({ a: 1, b: 2, c: 3 })
561561
const lazySeq = Seq(map)
562562
```
563563

0 commit comments

Comments
 (0)