Skip to content

Commit 4ce035d

Browse files
committed
Merge branch 'develop' of https://github.com/stdlib-js/stdlib into develop
2 parents 8a705c1 + 506bdcc commit 4ce035d

File tree

13 files changed

+39
-29
lines changed

13 files changed

+39
-29
lines changed

lib/node_modules/@stdlib/console/log-each/package.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,16 @@
4949
"windows"
5050
],
5151
"keywords": [
52-
"stdlib"
52+
"stdlib",
53+
"console",
54+
"log",
55+
"debug",
56+
"logger",
57+
"print",
58+
"stdout",
59+
"array",
60+
"each",
61+
"element",
62+
"format"
5363
]
5464
}

lib/node_modules/@stdlib/console/log/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ limitations under the License.
4040
var log = require( '@stdlib/console/log' );
4141
```
4242

43-
#### log( \[data]\[,..args] )
43+
#### log( \[data]\[,...args] )
4444

4545
Outputs a message to the debugger console.
4646

lib/node_modules/@stdlib/console/log/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'use strict';
2020

2121
/**
22-
* Output a message a message to the debugger console.
22+
* Output a message to the debugger console.
2323
*
2424
* @module @stdlib/console/log
2525
*

lib/node_modules/@stdlib/object/assign/test/test.builtin.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var assign = require( './../lib/builtin.js' );
3131
var opts = {
3232
'skip': ( typeof Object.assign === 'undefined' ) // eslint-disable-line node/no-unsupported-features/es-builtins
3333
};
34-
var optsSymbool = {
34+
var optsSymbol = {
3535
'skip': opts.skip || !hasSymbolSupport()
3636
};
3737

@@ -107,7 +107,7 @@ tape( 'the function assigns enumerable own properties of one or more source obje
107107
t.end();
108108
});
109109

110-
tape( 'the function copies symbol-typed properties', optsSymbool, function test( t ) {
110+
tape( 'the function copies symbol-typed properties', optsSymbol, function test( t ) {
111111
var expected;
112112
var obj1;
113113
var obj2;

lib/node_modules/@stdlib/utils/real-max/bin/cli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function main() {
5555
return;
5656
}
5757

58-
// Get any provided command-line arguments:s
58+
// Get any provided command-line arguments:
5959
args = cli.args();
6060
console.log( realMax( args[ 0 ] ) ); // eslint-disable-line no-console
6161
}

lib/node_modules/@stdlib/utils/real-min/bin/cli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function main() {
5555
return;
5656
}
5757

58-
// Get any provided command-line arguments:s
58+
// Get any provided command-line arguments:
5959
args = cli.args();
6060
console.log( realMin( args[ 0 ] ) ); // eslint-disable-line no-console
6161
}

lib/node_modules/@stdlib/utils/safe-int-max/bin/cli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function main() {
5555
return;
5656
}
5757

58-
// Get any provided command-line arguments:s
58+
// Get any provided command-line arguments:
5959
args = cli.args();
6060
console.log( safeIntMax( args[ 0 ] ) ); // eslint-disable-line no-console
6161
}

lib/node_modules/@stdlib/utils/safe-int-min/bin/cli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function main() {
5555
return;
5656
}
5757

58-
// Get any provided command-line arguments:s
58+
// Get any provided command-line arguments:
5959
args = cli.args();
6060
console.log( safeIntMin( args[ 0 ] ) ); // eslint-disable-line no-console
6161
}

lib/node_modules/@stdlib/utils/size-of/bin/cli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function main() {
5555
return;
5656
}
5757

58-
// Get any provided command-line arguments:s
58+
// Get any provided command-line arguments:
5959
args = cli.args();
6060
console.log( sizeOf( args[ 0 ] ) ); // eslint-disable-line no-console
6161
}

lib/node_modules/@stdlib/utils/type-max/bin/cli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function main() {
5555
return;
5656
}
5757

58-
// Get any provided command-line arguments:s
58+
// Get any provided command-line arguments:
5959
args = cli.args();
6060
console.log( typeMax( args[ 0 ] ) ); // eslint-disable-line no-console
6161
}

0 commit comments

Comments
 (0)