Skip to content

Commit 50aaffa

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <[email protected]>
1 parent 69887a0 commit 50aaffa

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

lib/node_modules/@stdlib/console/log-each-map/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
> var x = [ 'foo', 'bar' ];
3636
> var y = [ 'baz', 'beep' ];
3737
> function f( x, y ) { return x + y; };
38-
> {{alias}}( '%s-%s', x, y, f );
38+
> {{alias}}( '%s+%s = %s', x, y, f );
3939

4040
See Also
4141
--------

lib/node_modules/@stdlib/console/log-each-map/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@
5353
* var x = [ 'foo', 'bar' ];
5454
* var y = [ 'baz', 'beep' ];
5555
*
56-
* logEachMap( '%s-%s', x, y, append );
57-
* // e.g., => 'foo-baz\nbar-beep\n'
56+
* logEachMap( '%s+%s = %s', x, y, append );
57+
* // e.g., => 'foo+baz = foobaz\nbar+beep = barbeep\n'
5858
*/
5959

6060
// MODULES //

lib/node_modules/@stdlib/console/log-each-map/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ var logger = require( '@stdlib/console/log' );
7474
* var x = [ 'foo', 'bar' ];
7575
* var y = [ 'baz', 'beep' ];
7676
*
77-
* logEachMap( '%s-%s', x, y, append );
78-
* // e.g., => 'foo-baz\nbar-beep\n'
77+
* logEachMap( '%s+%s = %s', x, y, append );
78+
* // e.g., => 'foo+baz = foobaz\nbar+beep = barbeep\n'
7979
*/
8080
function logEachMap( str ) {
8181
var strides;

0 commit comments

Comments
 (0)