Skip to content

Commit e54e6a4

Browse files
fixed the example
1 parent 9c90cd2 commit e54e6a4

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

  • lib/node_modules/@stdlib/nlp/expand-contractions/lib

lib/node_modules/@stdlib/nlp/expand-contractions/lib/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@
2626
* @example
2727
* var expandContractions = require( '@stdlib/nlp/expand-contractions' );
2828
*
29-
* var str = "I won't be able to get y'all out of this one.";
29+
* var str = "I'm ready.";
3030
* var out = expandContractions( str );
31-
* // returns 'I will not be able to get you all out of this one.'
31+
* // returns 'I am ready.'
3232
*
33-
* str = 'It oughtn't to be my fault, because, you know, I didn't know';
33+
* str = "You're sure?";
3434
* out = expandContractions( str );
35-
* // returns 'It ought not to be my fault, because, you know, I did not know'
35+
* // returns 'You are sure?'
3636
*/
3737

3838
// MODULES //

0 commit comments

Comments
 (0)