Skip to content

Commit 64a866a

Browse files
committed
docs: fix missing hyphen in comment
1 parent 857a8c7 commit 64a866a

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/ndarray/order/lib

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/ndarray/order/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ function order( x ) {
7575
}
7676
// o === 0
7777
if ( ndims( x ) === 0 ) {
78-
return ROW_MAJOR; // default to row major for zero-dimensional ndarrays
78+
return ROW_MAJOR; // default to row-major for zero-dimensional ndarrays
7979
}
8080
// Case: mixed strides (e.g., [ 2, 3, 1 ] )
8181
return null;

0 commit comments

Comments
 (0)