Skip to content

Commit e74ff00

Browse files
committed
docs: fix grammar in comments
1 parent 4840fd0 commit e74ff00

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/napi/argv-strided-float32array2d/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ static napi_value addon( napi_env env, napi_callback_info info ) {
186186
// Retrieve add-on callback arguments:
187187
STDLIB_NAPI_ARGV( env, info, argv, argc, 8 );
188188

189-
// Convert the number of rows and columns to a C types:
189+
// Convert the number of rows and columns to C types:
190190
STDLIB_NAPI_ARGV_INT64( env, M, argv, 0 );
191191
STDLIB_NAPI_ARGV_INT64( env, N, argv, 1 );
192192

lib/node_modules/@stdlib/napi/argv-strided-float32array2d/include/stdlib/napi/argv_strided_float32array2d.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
* // Retrieve add-on callback arguments:
6060
* STDLIB_NAPI_ARGV( env, info, argv, argc, 8 );
6161
*
62-
* // Convert the number of rows and columns to a C types:
62+
* // Convert the number of rows and columns to C types:
6363
* STDLIB_NAPI_ARGV_INT64( env, M, argv, 0 );
6464
* STDLIB_NAPI_ARGV_INT64( env, N, argv, 1 );
6565
*

lib/node_modules/@stdlib/napi/argv-strided-float64array2d/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ static napi_value addon( napi_env env, napi_callback_info info ) {
186186
// Retrieve add-on callback arguments:
187187
STDLIB_NAPI_ARGV( env, info, argv, argc, 8 );
188188

189-
// Convert the number of rows and columns to a C types:
189+
// Convert the number of rows and columns to C types:
190190
STDLIB_NAPI_ARGV_INT64( env, M, argv, 0 );
191191
STDLIB_NAPI_ARGV_INT64( env, N, argv, 1 );
192192

lib/node_modules/@stdlib/napi/argv-strided-float64array2d/include/stdlib/napi/argv_strided_float64array2d.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
* // Retrieve add-on callback arguments:
6060
* STDLIB_NAPI_ARGV( env, info, argv, argc, 8 );
6161
*
62-
* // Convert the number of rows and columns to a C types:
62+
* // Convert the number of rows and columns to C types:
6363
* STDLIB_NAPI_ARGV_INT64( env, M, argv, 0 );
6464
* STDLIB_NAPI_ARGV_INT64( env, N, argv, 1 );
6565
*

0 commit comments

Comments
 (0)