Skip to content

Commit 0fc0f94

Browse files
committed
Fix interpolation
1 parent 9651be3 commit 0fc0f94

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/utils/group-by

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/utils/group-by/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ An `indicator` function is provided two arguments:
4242

4343
``` javascript
4444
function indicator( v, i ) {
45-
console.log( '%d: %d', i, v );
45+
console.log( '%d: %s', i, v );
4646
return v[ 0 ];
4747
}
4848
var arr = [ 'beep', 'boop', 'foo', 'bar' ];

0 commit comments

Comments
 (0)