We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c90cd2 commit e54e6a4Copy full SHA for e54e6a4
1 file changed
lib/node_modules/@stdlib/nlp/expand-contractions/lib/index.js
@@ -26,13 +26,13 @@
26
* @example
27
* var expandContractions = require( '@stdlib/nlp/expand-contractions' );
28
*
29
-* var str = "I won't be able to get y'all out of this one.";
+* var str = "I'm ready.";
30
* var out = expandContractions( str );
31
-* // returns 'I will not be able to get you all out of this one.'
+* // returns 'I am ready.'
32
33
-* str = 'It oughtn't to be my fault, because, you know, I didn't know';
+* str = "You're sure?";
34
* out = expandContractions( str );
35
-* // returns 'It ought not to be my fault, because, you know, I did not know'
+* // returns 'You are sure?'
36
*/
37
38
// MODULES //
0 commit comments