Skip to content

Commit dd9af43

Browse files
committed
Remove semicolons
1 parent 333d452 commit dd9af43

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

lib/node_modules/@stdlib/assert/is-typed-array/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
Examples
1616
--------
17-
> var bool = {{alias}}( new {{alias:@stdlib/array/int8}}( 10 ) );
17+
> var bool = {{alias}}( new {{alias:@stdlib/array/int8}}( 10 ) )
1818
true
1919

2020
See Also

lib/node_modules/@stdlib/random/shuffle/docs/repl.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161

6262
// Use a different copy strategy:
6363
> myshuffle = {{alias}}.factory({ 'copy': 'none', 'seed': 867 });
64+
6465
// Created shuffle function mutates input array by default:
6566
> arr = [ 1, 2, 3, 4, 5, 6 ];
6667
> out = myshuffle( arr );

lib/node_modules/@stdlib/utils/index-of/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@
2525
--------
2626
// Basic usage:
2727
> var arr = [ 4, 3, 2, 1 ];
28-
> var idx = {{alias}}( arr, 3 );
28+
> var idx = {{alias}}( arr, 3 )
2929
1
3030
> arr = [ 4, 3, 2, 1 ];
31-
> idx = {{alias}}( arr, 5 );
31+
> idx = {{alias}}( arr, 5 )
3232
-1
3333

3434
// Using a `fromIndex`:

lib/node_modules/@stdlib/utils/timeit/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
... }
7878
... console.dir( results );
7979
... };
80-
> {{alias}}( code, done );
80+
> {{alias}}( code, done )
8181
e.g.,
8282
{
8383
"iterations": 1000000,

0 commit comments

Comments
 (0)