Skip to content

Commit 122b36a

Browse files
committed
Auto-generated commit
1 parent 5e0478a commit 122b36a

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
@@ -109,7 +109,7 @@ type BinaryTransform = ( value: any, next: Callback ) => void;
109109
* @param value - object value corresponding to `key`
110110
* @param next - a callback to be invoked after processing an object `value`
111111
*/
112-
type TertiaryTransform = ( value: any, index: number, next: Callback ) => void;
112+
type TernaryTransform = ( value: any, index: number, next: Callback ) => void;
113113

114114
/**
115115
* Transform function.
@@ -129,7 +129,7 @@ type QuaternaryTransform = ( value: any, index: number, obj: any, next: Callback
129129
* @param obj - the input object
130130
* @param next - a callback to be invoked after processing an object `value`
131131
*/
132-
type Transform = Unary | BinaryTransform | TertiaryTransform | QuaternaryTransform; // tslint-disable-line max-line-length
132+
type Transform = Unary | BinaryTransform | TernaryTransform | QuaternaryTransform; // tslint-disable-line max-line-length
133133

134134
/**
135135
* Maps keys from one object to a new object having the same values.

0 commit comments

Comments
 (0)