Skip to content

Commit d653e8e

Browse files
authored
Apply suggestions from code review
Co-authored-by: Athan <kgryte@gmail.com> Signed-off-by: Athan <kgryte@gmail.com>
1 parent 022cdfa commit d653e8e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • lib/node_modules/@stdlib/ndarray/base/rot180

lib/node_modules/@stdlib/ndarray/base/rot180/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ arr = ndarray2array( y );
106106

107107
// Rotating twice returns the original arrangement:
108108
y = rot180( rot180( x, [ 0, 1 ], false ), [ 0, 1 ], false );
109-
console.log( ndarray2array( y ) );
110-
// => [ [ 1, 2, 3 ], [ 4, 5, 6 ] ]
109+
arr = ndarray2array( y );
110+
// returns [ [ 1, 2, 3 ], [ 4, 5, 6 ] ]
111111
```
112112

113113
</section>

0 commit comments

Comments
 (0)