Skip to content

Commit cb75c04

Browse files
committed
Fix return annotations
1 parent 56893dc commit cb75c04

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

lib/node_modules/@stdlib/string/capitalize/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ console.log( capitalize( 'javaScript' ) );
3030
// => 'JavaScript'
3131

3232
console.log( capitalize( 'Hidden Treasures' ) );
33-
// => 'Hidden Treasures';
33+
// => 'Hidden Treasures'

lib/node_modules/@stdlib/string/remove-first/examples/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ console.log( removeFirst( 'last man standing' ) );
2424
// => 'ast man standing'
2525

2626
console.log( removeFirst( 'presidential election' ) );
27-
// => 'residential Election'
27+
// => 'residential election'
2828

2929
console.log( removeFirst( 'javaScript' ) );
3030
// => 'avaScript'
3131

3232
console.log( removeFirst( 'Hidden Treasures' ) );
33-
// => 'idden Treasures';
33+
// => 'idden Treasures'

lib/node_modules/@stdlib/string/remove-last/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ console.log( removeLast( 'javaScript' ) );
3030
// => 'javaScrip'
3131

3232
console.log( removeLast( 'Hidden Treasures' ) );
33-
// => 'Hidden Treasure';
33+
// => 'Hidden Treasure'

lib/node_modules/@stdlib/string/remove-punctuation/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ console.log( removePunctuation( 'Double, double, toil and trouble; Fire burn, an
2424
// => 'Double double toil and trouble Fire burn and cauldron bubble'
2525

2626
console.log( removePunctuation( 'This function removes these characters: `{}[]:,!/<>().;~|?\'"' ) );
27-
// => 'This function removes these characters'
27+
// => 'This function removes these characters '
2828

2929
console.log( removePunctuation( 'We have to hold the border – at all cost' ) );
3030
// => 'We have to hold the border at all cost'

lib/node_modules/@stdlib/string/reverse/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ console.log( reverseString( 'javaScript' ) );
3030
// => 'tpircSavaj'
3131

3232
console.log( reverseString( 'Hidden Treasures' ) );
33-
// => 'serusaerT neddiH';
33+
// => 'serusaerT neddiH'

lib/node_modules/@stdlib/string/uncapitalize/examples/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ console.log( uncapitalize( 'Last man standing' ) );
2424
// => 'last man standing'
2525

2626
console.log( uncapitalize( 'Presidential election' ) );
27-
// => 'presidential Election'
27+
// => 'presidential election'
2828

2929
console.log( uncapitalize( 'JavaScript' ) );
3030
// => 'javaScript'
3131

3232
console.log( uncapitalize( 'Hidden Treasures' ) );
33-
// => 'hidden Treasures';
33+
// => 'hidden Treasures'

0 commit comments

Comments
 (0)