Skip to content

Commit b9dc181

Browse files
committed
Update descriptions
1 parent 34ef12c commit b9dc181

File tree

2 files changed

+22
-22
lines changed
  • lib/node_modules/@stdlib/ndarray/ctor

2 files changed

+22
-22
lines changed

lib/node_modules/@stdlib/ndarray/ctor/include/stdlib/ndarray/ctor.h

+11-11
Original file line numberDiff line numberDiff line change
@@ -374,57 +374,57 @@ int8_t stdlib_ndarray_iget_uint8( const struct ndarray *arr, const int64_t idx,u
374374
int8_t stdlib_ndarray_iget_int8( const struct ndarray *arr, const int64_t idx,int8_t *out );
375375

376376
/**
377-
* Sets an ndarray data element specified by a provided byte array pointer.
377+
* Sets an ndarray data element specified by a byte array pointer.
378378
*/
379379
int8_t stdlib_ndarray_set_ptr( const struct ndarray *arr, const uint8_t *idx, const void *v );
380380

381381
/**
382-
* Sets a double-precision floating-point ndarray data element specified by a provided byte array pointer.
382+
* Sets a double-precision floating-point ndarray data element specified by a byte array pointer.
383383
*/
384384
int8_t stdlib_ndarray_set_ptr_float64( const uint8_t *idx, const double v );
385385

386386
/**
387-
* Sets a single-precision floating-point ndarray data element specified by a provided byte array pointer.
387+
* Sets a single-precision floating-point ndarray data element specified by a byte array pointer.
388388
*/
389389
int8_t stdlib_ndarray_set_ptr_float32( const uint8_t *idx, const float v );
390390

391391
/**
392-
* Sets an unsigned 64-bit integer ndarray data element specified by a provided byte array pointer.
392+
* Sets an unsigned 64-bit integer ndarray data element specified by a byte array pointer.
393393
*/
394394
int8_t stdlib_ndarray_set_ptr_uint64( const uint8_t *idx, const uint64_t v );
395395

396396
/**
397-
* Sets a signed 64-bit integer ndarray data element specified by a provided byte array pointer.
397+
* Sets a signed 64-bit integer ndarray data element specified by a byte array pointer.
398398
*/
399399
int8_t stdlib_ndarray_set_ptr_int64( const uint8_t *idx, const int64_t v );
400400

401401
/**
402-
* Sets an unsigned 32-bit integer ndarray data element specified by a provided byte array pointer.
402+
* Sets an unsigned 32-bit integer ndarray data element specified by a byte array pointer.
403403
*/
404404
int8_t stdlib_ndarray_set_ptr_uint32( const uint8_t *idx, const uint32_t v );
405405

406406
/**
407-
* Sets a signed 32-bit integer ndarray data element specified by a provided byte array pointer.
407+
* Sets a signed 32-bit integer ndarray data element specified by a byte array pointer.
408408
*/
409409
int8_t stdlib_ndarray_set_ptr_int32( const uint8_t *idx, const int32_t v );
410410

411411
/**
412-
* Sets an unsigned 16-bit integer ndarray data element specified by a provided byte array pointer.
412+
* Sets an unsigned 16-bit integer ndarray data element specified by a byte array pointer.
413413
*/
414414
int8_t stdlib_ndarray_set_ptr_uint16( const uint8_t *idx, const uint16_t v );
415415

416416
/**
417-
* Sets a signed 16-bit integer ndarray data element specified by a provided byte array pointer.
417+
* Sets a signed 16-bit integer ndarray data element specified by a byte array pointer.
418418
*/
419419
int8_t stdlib_ndarray_set_ptr_int16( const uint8_t *idx, const int16_t v );
420420

421421
/**
422-
* Sets an unsigned 8-bit integer ndarray data element specified by a provided byte array pointer.
422+
* Sets an unsigned 8-bit integer ndarray data element specified by a byte array pointer.
423423
*/
424424
int8_t stdlib_ndarray_set_ptr_uint8( const uint8_t *idx, const uint8_t v );
425425

426426
/**
427-
* Sets a signed 8-bit integer ndarray data element specified by a provided byte array pointer.
427+
* Sets a signed 8-bit integer ndarray data element specified by a byte array pointer.
428428
*/
429429
int8_t stdlib_ndarray_set_ptr_int8( const uint8_t *idx, const int8_t v );
430430

lib/node_modules/@stdlib/ndarray/ctor/src/main.c

+11-11
Original file line numberDiff line numberDiff line change
@@ -868,7 +868,7 @@ int8_t stdlib_ndarray_iget_int8( const struct ndarray *arr, const int64_t idx,in
868868
}
869869

870870
/**
871-
* Sets an ndarray data element specified by a provided byte array pointer.
871+
* Sets an ndarray data element specified by a byte array pointer.
872872
*
873873
* ## Notes
874874
*
@@ -917,7 +917,7 @@ int8_t stdlib_ndarray_set_ptr( const struct ndarray *arr, const uint8_t *idx, co
917917
}
918918

919919
/**
920-
* Sets a double-precision floating-point ndarray data element specified by a provided byte array pointer.
920+
* Sets a double-precision floating-point ndarray data element specified by a byte array pointer.
921921
*
922922
* ## Notes
923923
*
@@ -933,7 +933,7 @@ int8_t stdlib_ndarray_set_ptr_float64( const uint8_t *idx, const double v ) {
933933
}
934934

935935
/**
936-
* Sets a single-precision floating-point ndarray data element specified by a provided byte array pointer.
936+
* Sets a single-precision floating-point ndarray data element specified by a byte array pointer.
937937
*
938938
* ## Notes
939939
*
@@ -949,7 +949,7 @@ int8_t stdlib_ndarray_set_ptr_float32( const uint8_t *idx, const float v ) {
949949
}
950950

951951
/**
952-
* Sets an unsigned 64-bit integer ndarray data element specified by a provided byte array pointer.
952+
* Sets an unsigned 64-bit integer ndarray data element specified by a byte array pointer.
953953
*
954954
* ## Notes
955955
*
@@ -965,7 +965,7 @@ int8_t stdlib_ndarray_set_ptr_uint64( const uint8_t *idx, const uint64_t v ) {
965965
}
966966

967967
/**
968-
* Sets a signed 64-bit integer ndarray data element specified by a provided byte array pointer.
968+
* Sets a signed 64-bit integer ndarray data element specified by a byte array pointer.
969969
*
970970
* ## Notes
971971
*
@@ -981,7 +981,7 @@ int8_t stdlib_ndarray_set_ptr_int64( const uint8_t *idx, const int64_t v ) {
981981
}
982982

983983
/**
984-
* Sets an unsigned 32-bit integer ndarray data element specified by a provided byte array pointer.
984+
* Sets an unsigned 32-bit integer ndarray data element specified by a byte array pointer.
985985
*
986986
* ## Notes
987987
*
@@ -997,7 +997,7 @@ int8_t stdlib_ndarray_set_ptr_uint32( const uint8_t *idx, const uint32_t v ) {
997997
}
998998

999999
/**
1000-
* Sets a signed 32-bit integer ndarray data element specified by a provided byte array pointer.
1000+
* Sets a signed 32-bit integer ndarray data element specified by a byte array pointer.
10011001
*
10021002
* ## Notes
10031003
*
@@ -1013,7 +1013,7 @@ int8_t stdlib_ndarray_set_ptr_int32( const uint8_t *idx, const int32_t v ) {
10131013
}
10141014

10151015
/**
1016-
* Sets an unsigned 16-bit integer ndarray data element specified by a provided byte array pointer.
1016+
* Sets an unsigned 16-bit integer ndarray data element specified by a byte array pointer.
10171017
*
10181018
* ## Notes
10191019
*
@@ -1029,7 +1029,7 @@ int8_t stdlib_ndarray_set_ptr_uint16( const uint8_t *idx, const uint16_t v ) {
10291029
}
10301030

10311031
/**
1032-
* Sets a signed 16-bit integer ndarray data element specified by a provided byte array pointer.
1032+
* Sets a signed 16-bit integer ndarray data element specified by a byte array pointer.
10331033
*
10341034
* ## Notes
10351035
*
@@ -1045,7 +1045,7 @@ int8_t stdlib_ndarray_set_ptr_int16( const uint8_t *idx, const int16_t v ) {
10451045
}
10461046

10471047
/**
1048-
* Sets an unsigned 8-bit integer ndarray data element specified by a provided byte array pointer.
1048+
* Sets an unsigned 8-bit integer ndarray data element specified by a byte array pointer.
10491049
*
10501050
* ## Notes
10511051
*
@@ -1061,7 +1061,7 @@ int8_t stdlib_ndarray_set_ptr_uint8( const uint8_t *idx, const uint8_t v ) {
10611061
}
10621062

10631063
/**
1064-
* Sets a signed 8-bit integer ndarray data element specified by a provided byte array pointer.
1064+
* Sets a signed 8-bit integer ndarray data element specified by a byte array pointer.
10651065
*
10661066
* ## Notes
10671067
*

0 commit comments

Comments
 (0)