File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1944,21 +1944,21 @@ declare module Immutable {
1944
1944
/**
1945
1945
* An iterator of this `Iterable`'s keys.
1946
1946
*
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.
1948
1948
*/
1949
1949
keys ( ) : Iterator < K > ;
1950
1950
1951
1951
/**
1952
1952
* An iterator of this `Iterable`'s values.
1953
1953
*
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.
1955
1955
*/
1956
1956
values ( ) : Iterator < V > ;
1957
1957
1958
1958
/**
1959
1959
* An iterator of this `Iterable`'s entries as `[key, value]` tuples.
1960
1960
*
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.
1962
1962
*/
1963
1963
entries ( ) : Iterator < /*[K, V]*/ Array < any > > ;
1964
1964
You can’t perform that action at this time.
0 commit comments