Skip to content

Commit d7319e0

Browse files
committed
Merge pull request immutable-js#328 from JonathanHayward/patch-1
Update README.md
2 parents 089d496 + 6274e6a commit d7319e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
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)