Skip to content

Commit 8bf2dc3

Browse files
committed
Fix copy-paste error
1 parent 66b3e1a commit 8bf2dc3

12 files changed

Lines changed: 12 additions & 12 deletions

File tree

lib/node_modules/@stdlib/string/capitalize/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import capitalize = require( './index' );
2626
capitalize( 'abc' ); // $ExpectType string
2727
}
2828

29-
// The function does not compile if provided a value other than a number...
29+
// The function does not compile if provided a value other than a string...
3030
{
3131
capitalize( true ); // $ExpectError
3232
capitalize( false ); // $ExpectError

lib/node_modules/@stdlib/string/left-trim/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import ltrim = require( './index' );
2626
ltrim( ' Whitespace ' ); // $ExpectType string
2727
}
2828

29-
// The function does not compile if provided a value other than a number...
29+
// The function does not compile if provided a value other than a string...
3030
{
3131
ltrim( true ); // $ExpectError
3232
ltrim( false ); // $ExpectError

lib/node_modules/@stdlib/string/lowercase/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import lowercase = require( './index' );
2626
lowercase( 'abc' ); // $ExpectType string
2727
}
2828

29-
// The function does not compile if provided a value other than a number...
29+
// The function does not compile if provided a value other than a string...
3030
{
3131
lowercase( true ); // $ExpectError
3232
lowercase( false ); // $ExpectError

lib/node_modules/@stdlib/string/remove-first/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import removeFirst = require( './index' );
2626
removeFirst( 'abc' ); // $ExpectType string
2727
}
2828

29-
// The function does not compile if provided a value other than a number...
29+
// The function does not compile if provided a value other than a string...
3030
{
3131
removeFirst( true ); // $ExpectError
3232
removeFirst( false ); // $ExpectError

lib/node_modules/@stdlib/string/remove-last/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import removeFirst = require( './index' );
2626
removeFirst( 'abc' ); // $ExpectType string
2727
}
2828

29-
// The function does not compile if provided a value other than a number...
29+
// The function does not compile if provided a value other than a string...
3030
{
3131
removeFirst( true ); // $ExpectError
3232
removeFirst( false ); // $ExpectError

lib/node_modules/@stdlib/string/remove-punctuation/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import removePunctuation = require( './index' );
2626
removePunctuation( 'Sun Tzu said: "A leader leads by example not by force."' ); // $ExpectType string
2727
}
2828

29-
// The function does not compile if provided a value other than a number...
29+
// The function does not compile if provided a value other than a string...
3030
{
3131
removePunctuation( true ); // $ExpectError
3232
removePunctuation( false ); // $ExpectError

lib/node_modules/@stdlib/string/reverse/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import reverse = require( './index' );
2626
reverse( 'last man standing' ); // $ExpectType string
2727
}
2828

29-
// The function does not compile if provided a value other than a number...
29+
// The function does not compile if provided a value other than a string...
3030
{
3131
reverse( true ); // $ExpectError
3232
reverse( false ); // $ExpectError

lib/node_modules/@stdlib/string/right-trim/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import rtrim = require( './index' );
2626
rtrim( ' Whitespace ' ); // $ExpectType string
2727
}
2828

29-
// The function does not compile if provided a value other than a number...
29+
// The function does not compile if provided a value other than a string...
3030
{
3131
rtrim( true ); // $ExpectError
3232
rtrim( false ); // $ExpectError

lib/node_modules/@stdlib/string/startcase/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import startcase = require( './index' );
2626
startcase( 'Last man standing' ); // $ExpectType string
2727
}
2828

29-
// The function does not compile if provided a value other than a number...
29+
// The function does not compile if provided a value other than a string...
3030
{
3131
startcase( true ); // $ExpectError
3232
startcase( false ); // $ExpectError

lib/node_modules/@stdlib/string/trim/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import trim = require( './index' );
2626
trim( ' Whitespace ' ); // $ExpectType string
2727
}
2828

29-
// The function does not compile if provided a value other than a number...
29+
// The function does not compile if provided a value other than a string...
3030
{
3131
trim( true ); // $ExpectError
3232
trim( false ); // $ExpectError

0 commit comments

Comments
 (0)