Skip to content

Commit fcb6964

Browse files
committed
Fix comments
1 parent 7c3c93a commit fcb6964

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/ndarray/base/unary/lib/nd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ function unarynd( x, y, fcn ) {
122122
xbuf = x.data;
123123
ybuf = y.data;
124124

125-
// Cache references the respective stride arrays:
125+
// Cache references to the respective stride arrays:
126126
sx = x.strides;
127127
sy = y.strides;
128128

lib/node_modules/@stdlib/ndarray/base/unary/lib/nd_accessors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ function unarynd( x, y, fcn ) {
145145
xbuf = x.data;
146146
ybuf = y.data;
147147

148-
// Cache references the respective stride arrays:
148+
// Cache references to the respective stride arrays:
149149
sx = x.strides;
150150
sy = y.strides;
151151

lib/node_modules/@stdlib/utils/map-right/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ function mapRight( x, y, fcn, thisArg ) {
159159
xbuf = x.data;
160160
ybuf = y.data;
161161

162-
// Cache references the respective stride arrays:
162+
// Cache references to the respective stride arrays:
163163
sx = x.strides;
164164
sy = y.strides;
165165

lib/node_modules/@stdlib/utils/map/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ function map( x, y, fcn, thisArg ) {
159159
xbuf = x.data;
160160
ybuf = y.data;
161161

162-
// Cache references the respective stride arrays:
162+
// Cache references to the respective stride arrays:
163163
sx = x.strides;
164164
sy = y.strides;
165165

0 commit comments

Comments
 (0)