Skip to content

Commit 360f4a9

Browse files
committed
Added missing semicolons
1 parent 756d217 commit 360f4a9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

type-definitions/Immutable.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1944,21 +1944,21 @@ declare module Immutable {
19441944
/**
19451945
* An iterator of this `Iterable`'s keys.
19461946
*
1947-
* Note this will return an ES6 iterator which does not support Immutable JS sequence algorithms. Use `keySeq` instead, if this is what you want.
1947+
* Note: this will return an ES6 iterator which does not support Immutable JS sequence algorithms. Use `keySeq` instead, if this is what you want.
19481948
*/
19491949
keys(): Iterator<K>;
19501950

19511951
/**
19521952
* An iterator of this `Iterable`'s values.
19531953
*
1954-
* Note this will return an ES6 iterator which does not support Immutable JS sequence algorithms. Use `valueSeq` instead, if this is what you want.
1954+
* Note: this will return an ES6 iterator which does not support Immutable JS sequence algorithms. Use `valueSeq` instead, if this is what you want.
19551955
*/
19561956
values(): Iterator<V>;
19571957

19581958
/**
19591959
* An iterator of this `Iterable`'s entries as `[key, value]` tuples.
19601960
*
1961-
* Note this will return an ES6 iterator which does not support Immutable JS sequence algorithms. Use `entrySeq` instead, if this is what you want.
1961+
* Note: this will return an ES6 iterator which does not support Immutable JS sequence algorithms. Use `entrySeq` instead, if this is what you want.
19621962
*/
19631963
entries(): Iterator</*[K, V]*/Array<any>>;
19641964

0 commit comments

Comments
 (0)