Skip to content

Commit f89315e

Browse files
committed
Fix readme
1 parent 99c84fe commit f89315e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ results, these operations can be extremely efficient.
205205

206206
```javascript
207207
var myObject = {a:1,b:2,c:3};
208-
Seq(myObject).map(x => x * x).toObject();
208+
Immutable.Seq(myObject).map(x => x * x).toObject();
209209
// { a: 1, b: 4, c: 9 }
210210
```
211211

0 commit comments

Comments
 (0)