Skip to content

Commit 3f6aad6

Browse files
committed
Revert spelling change
1 parent a121349 commit 3f6aad6

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

lib/node_modules/@stdlib/string/lowercase/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# lowercase
2222

23-
> Convert a string to lower case.
23+
> Convert a string to lowercase.
2424
2525
<section class="intro">
2626

@@ -38,7 +38,7 @@ var lowercase = require( '@stdlib/string/lowercase' );
3838

3939
#### lowercase( str )
4040

41-
Converts a string to lower case.
41+
Converts a string to lowercase.
4242

4343
```javascript
4444
var str = lowercase( 'bEEp' );

lib/node_modules/@stdlib/string/lowercase/docs/repl.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
{{alias}}( str )
3-
Converts a string to lower case.
3+
Converts a string to lowercase.
44

55
Parameters
66
----------
@@ -10,7 +10,7 @@
1010
Returns
1111
-------
1212
out: string
13-
Lower case string.
13+
Lowercase string.
1414

1515
Examples
1616
--------

lib/node_modules/@stdlib/string/lowercase/docs/types/index.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
// TypeScript Version: 2.0
2020

2121
/**
22-
* Converts a string to lower case.
22+
* Converts a string to lowercase.
2323
*
2424
* @param str - string to convert
25-
* @returns lower case string
25+
* @returns lowercase string
2626
*
2727
* @example
2828
* var str = lowercase( 'bEEp' );

lib/node_modules/@stdlib/string/lowercase/lib/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'use strict';
2020

2121
/**
22-
* Convert a string to lower case.
22+
* Convert a string to lowercase.
2323
*
2424
* @module @stdlib/string/lowercase
2525
*

lib/node_modules/@stdlib/string/lowercase/lib/main.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ var base = require( '@stdlib/string/base/lowercase' );
2828
// MAIN //
2929

3030
/**
31-
* Converts a string to lower case.
31+
* Converts a string to lowercase.
3232
*
3333
* @param {string} str - string to convert
3434
* @throws {TypeError} must provide a string
35-
* @returns {string} lower case string
35+
* @returns {string} lowercase string
3636
*
3737
* @example
3838
* var str = lowercase( 'bEEp' );

lib/node_modules/@stdlib/string/lowercase/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/string/lowercase",
33
"version": "0.0.0",
4-
"description": "Convert a string to lower case.",
4+
"description": "Convert a string to lowercase.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

lib/node_modules/@stdlib/string/lowercase/test/test.cli.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ tape( 'when invoked with a `-V` flag, the command-line interface prints the vers
142142
}
143143
});
144144

145-
tape( 'the command-line interface converts a string argument to lower case', opts, function test( t ) {
145+
tape( 'the command-line interface converts a string argument to lowercase', opts, function test( t ) {
146146
var cmd = [
147147
EXEC_PATH,
148148
'-e',

lib/node_modules/@stdlib/string/lowercase/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ tape( 'the function throws an error if not provided a string', function test( t
5959
}
6060
});
6161

62-
tape( 'the function converts a string to lower case', function test( t ) {
62+
tape( 'the function converts a string to lowercase', function test( t ) {
6363
var expected;
6464
var values;
6565
var actual;

0 commit comments

Comments
 (0)