Skip to content

Commit 6a50e0d

Browse files
Piérre Reimertzleebyron
Piérre Reimertz
authored andcommitted
Fix typo in OrderedMap#toKeyedSeq (immutable-js#1177)
* Fix typo in OrderedMap#toKeyedSeq * run tests
1 parent 53e7334 commit 6a50e0d

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

dist/immutable-nonambient.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3620,6 +3620,7 @@
36203620
* // Seq { 0: "A", 1: "B", 2: "C" }
36213621
* keyedSeq.filter(v => v === 'B')
36223622
* // Seq { 1: "B" }
3623+
* ```
36233624
*/
36243625
toKeyedSeq(): Seq.Keyed<K, V>;
36253626

dist/immutable.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3620,6 +3620,7 @@ declare module Immutable {
36203620
* // Seq { 0: "A", 1: "B", 2: "C" }
36213621
* keyedSeq.filter(v => v === 'B')
36223622
* // Seq { 1: "B" }
3623+
* ```
36233624
*/
36243625
toKeyedSeq(): Seq.Keyed<K, V>;
36253626

type-definitions/Immutable.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3620,6 +3620,7 @@ declare module Immutable {
36203620
* // Seq { 0: "A", 1: "B", 2: "C" }
36213621
* keyedSeq.filter(v => v === 'B')
36223622
* // Seq { 1: "B" }
3623+
* ```
36233624
*/
36243625
toKeyedSeq(): Seq.Keyed<K, V>;
36253626

0 commit comments

Comments
 (0)