8000 Update README.md · powercoder23/immutable-js@6274e6a · GitHub
[go: up one dir, main page]

Skip to content

Commit 6274e6a

Browse files
Update README.md
Changed discrepancy where map2 had b set to 20 but a comment that b was equal to 50.
1 parent 089d496 commit 6274e6a

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
@@ -90,7 +90,7 @@ of your file.
9090
import Immutable = require('immutable');
9191
var map1: Immutable.Map<string, number>;
9292
map1 = Immutable.Map({a:1, b:2, c:3});
93-
var map2 = map1.set('b', 20);
93+
var map2 = map1.set('b', 50);
9494
map1.get('b'); // 2
9595
map2.get('b'); // 50
9696
```

0 commit comments

Comments
 (0)
0