Skip to content

Commit fdfad4c

Browse files
committed
Auto-generated commit
1 parent a5dbd0f commit fdfad4c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ type BinaryIndicator = ( value: any, next: Callback ) => void;
113113
* @param index - collection index
114114
* @param next - a callback to be invoked after processing a collection `value`
115115
*/
116-
type TertiaryIndicator = ( value: any, index: number, next: Callback ) => void;
116+
type TernaryIndicator = ( value: any, index: number, next: Callback ) => void;
117117

118118
/**
119119
* Checks whether an element in a collection passes a test.
@@ -133,7 +133,7 @@ type QuaternaryIndicator = ( value: any, index: number, collection: Collection,
133133
* @param collection - input collection
134134
* @param next - a callback to be invoked after processing a collection `value`
135135
*/
136-
type Indicator = Unary | BinaryIndicator | TertiaryIndicator | QuaternaryIndicator; // tslint-disable-line max-line-length
136+
type Indicator = Unary | BinaryIndicator | TernaryIndicator | QuaternaryIndicator; // tslint-disable-line max-line-length
137137

138138
/**
139139
* Invokes an indicator function for each element in a collection.

0 commit comments

Comments
 (0)