@@ -52,7 +52,7 @@ declare module 'immutable' {
52
52
* // false, "a", {a: {b: [10, 20, 30]}, c: 40 }
53
53
* // false, "", {"": {a: {b: [10, 20, 30]}, c: 40 }}
54
54
*
55
- * If `reviver` is not provided, the default behavior will convert Arrays into
55
+ * If `reviver` is not provided, the default behavior will convert Arrays intoam
56
56
* Lists and Objects into Maps.
57
57
*
58
58
* `reviver` acts similarly to the [same parameter in `JSON.parse`][1].
@@ -677,7 +677,7 @@ declare module 'immutable' {
677
677
* JavaScript Object.
678
678
*
679
679
* Note that `OrderedMap` are more expensive than non-ordered `Map` and may
680
- * consume more memory. `OrderedMap#set` is amoratized O(log32 N), but not
680
+ * consume more memory. `OrderedMap#set` is amortized O(log32 N), but not
681
681
* stable.
682
682
*/
683
683
@@ -830,7 +830,7 @@ declare module 'immutable' {
830
830
* The iteration behavior of OrderedSet is the same as native ES6 Set.
831
831
*
832
832
* Note that `OrderedSet` are more expensive than non-ordered `Set` and may
833
- * consume more memory. `OrderedSet#add` is amoratized O(log32 N), but not
833
+ * consume more memory. `OrderedSet#add` is amortized O(log32 N), but not
834
834
* stable.
835
835
*/
836
836
export module OrderedSet {
0 commit comments