Skip to content

Commit dec7060

Browse files
authored
Fix Lint Errors in repl.txt
Updated examples in repl.txt to remove trailing semicolons. Signed-off-by: Uday Kakade <141299403+udaykakade25@users.noreply.github.com>
1 parent a35ea00 commit dec7060

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • lib/node_modules/@stdlib/ndarray/iter/stacks/docs

lib/node_modules/@stdlib/ndarray/iter/stacks/docs/repl.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@
4545

4646
Examples
4747
--------
48-
> var x = {{alias:@stdlib/ndarray/array}}( [ [ [ 1, 2 ], [ 3, 4 ] ] ] );
49-
> var it = {{alias}}( x, [ 1, 2 ] );
50-
> var v = it.next().value;
48+
> var x = {{alias:@stdlib/ndarray/array}}( [ [ [ 1, 2 ], [ 3, 4 ] ] ] )
49+
> var it = {{alias}}( x, [ 1, 2 ] )
50+
> var v = it.next().value
5151
<ndarray>[ [ 1, 2 ], [ 3, 4 ] ]
5252

5353
See Also

0 commit comments

Comments
 (0)