Skip to content

Commit aab712f

Browse files
committed
Doc tweaks
1 parent ffe23a7 commit aab712f

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

dist/immutable.d.ts

+9-9
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,7 @@ declare module 'immutable' {
615615
): Map<string, V>;
616616

617617

618-
// Transient updates
618+
// Transient changes
619619

620620
/**
621621
* Every time you call one of the above functions, a new immutable Map is
@@ -1555,7 +1555,7 @@ declare module 'immutable' {
15551555
entrySeq(): IndexedSeq</*(K, V)*/Array<any>>;
15561556

15571557

1558-
// Sequence Functions
1558+
// Sequence algorithms
15591559

15601560
/**
15611561
* Returns a new Iterable of the same type with values passed through a
@@ -1644,7 +1644,7 @@ declare module 'immutable' {
16441644
): /*Map*/KeyedSeq<G, /*this*/Iterable<K, V>>;
16451645

16461646

1647-
// Side Effects
1647+
// Side effects
16481648

16491649
/**
16501650
* The `sideEffect` is executed for every entry in the Iterable.
@@ -1659,7 +1659,7 @@ declare module 'immutable' {
16591659
): number;
16601660

16611661

1662-
// Creating Subsets
1662+
// Creating subsets
16631663

16641664
/**
16651665
* Returns a new Iterable of the same type representing a portion of this
@@ -1813,7 +1813,7 @@ declare module 'immutable' {
18131813
): /*this*/Iterable<MK, MV>;
18141814

18151815

1816-
// Reducing a Value
1816+
// Reducing a value
18171817

18181818
/**
18191819
* Reduces the Iterable to a value by calling the `reducer` for every entry
@@ -1892,7 +1892,7 @@ declare module 'immutable' {
18921892
): Map<G, number>;
18931893

18941894

1895-
// Search for Value
1895+
// Search for value
18961896

18971897
/**
18981898
* Returns the value for which the `predicate` returns true.
@@ -2015,7 +2015,7 @@ declare module 'immutable' {
20152015
toSeq(): KeyedSeq<K, V>;
20162016

20172017

2018-
// Sequence Functions
2018+
// Sequence functions
20192019

20202020
/**
20212021
* Returns a new KeyedIterable of the same type where the keys and values
@@ -2059,7 +2059,7 @@ declare module 'immutable' {
20592059
): /*this*/KeyedIterable<KM, VM>;
20602060

20612061

2062-
// Search for Value
2062+
// Search for value
20632063

20642064
/**
20652065
* Returns the key associated with the search value, or undefined.
@@ -2174,7 +2174,7 @@ declare module 'immutable' {
21742174
): /*this*/IndexedIterable<T>;
21752175

21762176

2177-
// Search for Value
2177+
// Search for value
21782178

21792179
/**
21802180
* Returns the first index at which a given value can be found in the

type-definitions/Immutable.d.ts

+9-9
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,7 @@ declare module 'immutable' {
615615
): Map<string, V>;
616616

617617

618-
// Transient updates
618+
// Transient changes
619619

620620
/**
621621
* Every time you call one of the above functions, a new immutable Map is
@@ -1555,7 +1555,7 @@ declare module 'immutable' {
15551555
entrySeq(): IndexedSeq</*(K, V)*/Array<any>>;
15561556

15571557

1558-
// Sequence Functions
1558+
// Sequence algorithms
15591559

15601560
/**
15611561
* Returns a new Iterable of the same type with values passed through a
@@ -1644,7 +1644,7 @@ declare module 'immutable' {
16441644
): /*Map*/KeyedSeq<G, /*this*/Iterable<K, V>>;
16451645

16461646

1647-
// Side Effects
1647+
// Side effects
16481648

16491649
/**
16501650
* The `sideEffect` is executed for every entry in the Iterable.
@@ -1659,7 +1659,7 @@ declare module 'immutable' {
16591659
): number;
16601660

16611661

1662-
// Creating Subsets
1662+
// Creating subsets
16631663

16641664
/**
16651665
* Returns a new Iterable of the same type representing a portion of this
@@ -1813,7 +1813,7 @@ declare module 'immutable' {
18131813
): /*this*/Iterable<MK, MV>;
18141814

18151815

1816-
// Reducing a Value
1816+
// Reducing a value
18171817

18181818
/**
18191819
* Reduces the Iterable to a value by calling the `reducer` for every entry
@@ -1892,7 +1892,7 @@ declare module 'immutable' {
18921892
): Map<G, number>;
18931893

18941894

1895-
// Search for Value
1895+
// Search for value
18961896

18971897
/**
18981898
* Returns the value for which the `predicate` returns true.
@@ -2015,7 +2015,7 @@ declare module 'immutable' {
20152015
toSeq(): KeyedSeq<K, V>;
20162016

20172017

2018-
// Sequence Functions
2018+
// Sequence functions
20192019

20202020
/**
20212021
* Returns a new KeyedIterable of the same type where the keys and values
@@ -2059,7 +2059,7 @@ declare module 'immutable' {
20592059
): /*this*/KeyedIterable<KM, VM>;
20602060

20612061

2062-
// Search for Value
2062+
// Search for value
20632063

20642064
/**
20652065
* Returns the key associated with the search value, or undefined.
@@ -2174,7 +2174,7 @@ declare module 'immutable' {
21742174
): /*this*/IndexedIterable<T>;
21752175

21762176

2177-
// Search for Value
2177+
// Search for value
21782178

21792179
/**
21802180
* Returns the first index at which a given value can be found in the

0 commit comments

Comments
 (0)