Skip to content

Commit 7703340

Browse files
committed
Update wording
1 parent bff7efa commit 7703340

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

lib/node_modules/@stdlib/utils/deep-set/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ import deepSet = require( './index' );
6969
deepSet( obj, 'a.b.c', 'e', { 'sep': ( x: number ): number => x } ); // $ExpectError
7070
}
7171

72-
// The compiler throws an error if the function is provided less than three arguments...
72+
// The compiler throws an error if the function is provided fewer than three arguments...
7373
{
7474
deepSet(); // $ExpectError
7575
deepSet( {} ); // $ExpectError

lib/node_modules/@stdlib/utils/do-until/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function noop() {
6464
doUntil( noop, {} ); // $ExpectError
6565
}
6666

67-
// The function does not compile if provided less than two arguments...
67+
// The function does not compile if provided fewer than two arguments...
6868
{
6969
doUntil(); // $ExpectError
7070
doUntil( noop ); // $ExpectError

lib/node_modules/@stdlib/utils/do-while/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function noop() {
6464
doWhile( noop, {} ); // $ExpectError
6565
}
6666

67-
// The function does not compile if provided less than two arguments...
67+
// The function does not compile if provided fewer than two arguments...
6868
{
6969
doWhile(); // $ExpectError
7070
doWhile( noop ); // $ExpectError

lib/node_modules/@stdlib/utils/map-function/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ function identity( x: any ): any {
5454
mapFun( identity, {} ); // $ExpectError
5555
}
5656

57-
// The function does not compile if provided less than two arguments...
57+
// The function does not compile if provided fewer than two arguments...
5858
{
5959
mapFun(); // $ExpectError
6060
mapFun( identity ); // $ExpectError

lib/node_modules/@stdlib/utils/until/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function noop() {
6464
until( noop, {} ); // $ExpectError
6565
}
6666

67-
// The function does not compile if provided less than two arguments...
67+
// The function does not compile if provided fewer than two arguments...
6868
{
6969
until(); // $ExpectError
7070
until( noop ); // $ExpectError

lib/node_modules/@stdlib/utils/while/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function noop() {
6464
whilst( noop, {} ); // $ExpectError
6565
}
6666

67-
// The function does not compile if provided less than two arguments...
67+
// The function does not compile if provided fewer than two arguments...
6868
{
6969
whilst(); // $ExpectError
7070
whilst( noop ); // $ExpectError

0 commit comments

Comments
 (0)