Skip to content

Commit 5b870ea

Browse files
authored
Apply suggestions from code review
Co-authored-by: Athan <kgryte@gmail.com> Signed-off-by: Athan <kgryte@gmail.com>
1 parent 0af3105 commit 5b870ea

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • lib/node_modules/@stdlib/ndarray/base/rotr90/examples

lib/node_modules/@stdlib/ndarray/base/rotr90/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ y = rotr90( x, 4, false );
4545
console.log( ndarray2array( y ) );
4646
// => [ [ 1, 2, 3 ], [ 4, 5, 6 ] ]
4747

48-
// Rotate 90 degrees counterclockwise:
48+
// Rotate 90 degrees counterclockwise (equivalent to k=3):
4949
y = rotr90( x, -1, false );
5050
console.log( ndarray2array( y ) );
5151
// => [ [ 3, 6 ], [ 2, 5 ], [ 1, 4 ] ]

0 commit comments

Comments
 (0)