Skip to content

Commit 9369212

Browse files
committed
docs: fix descriptions
1 parent bc9c722 commit 9369212

File tree

1 file changed

+4
-4
lines changed
  • lib/node_modules/@stdlib/utils/async/count-by/docs/types

1 file changed

+4
-4
lines changed

lib/node_modules/@stdlib/utils/async/count-by/docs/types/index.d.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -109,15 +109,15 @@ type BinaryNext = ( error: Error | null, group: string | Symbol | number ) => vo
109109
type Next = NullaryNext | UnaryNext | BinaryNext;
110110

111111
/**
112-
* Checks whether an element in a collection passes a test.
112+
* Returns the group to which a collection element belongs.
113113
*
114114
* @param value - collection value
115115
* @param next - a callback to be invoked after processing a collection `value`
116116
*/
117117
type BinaryIndicator<T, V> = ( this: V, value: T, next: Next ) => void;
118118

119119
/**
120-
* Checks whether an element in a collection passes a test.
120+
* Returns the group to which a collection element belongs.
121121
*
122122
* @param value - collection value
123123
* @param index - collection index
@@ -126,7 +126,7 @@ type BinaryIndicator<T, V> = ( this: V, value: T, next: Next ) => void;
126126
type TernaryIndicator<T, V> = ( this: V, value: T, index: number, next: Next ) => void;
127127

128128
/**
129-
* Checks whether an element in a collection passes a test.
129+
* Returns the group to which a collection element belongs.
130130
*
131131
* @param value - collection value
132132
* @param index - collection index
@@ -136,7 +136,7 @@ type TernaryIndicator<T, V> = ( this: V, value: T, index: number, next: Next ) =
136136
type QuaternaryIndicator<T, V> = ( this: V, value: T, index: number, collection: Collection<T>, next: Next ) => void;
137137

138138
/**
139-
* Checks whether an element in a collection passes a test.
139+
* Returns the group to which a collection element belongs.
140140
*
141141
* @param value - collection value
142142
* @param index - collection index

0 commit comments

Comments
 (0)