@@ -868,7 +868,7 @@ int8_t stdlib_ndarray_iget_int8( const struct ndarray *arr, const int64_t idx,in
868
868
}
869
869
870
870
/**
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.
872
872
*
873
873
* ## Notes
874
874
*
@@ -917,7 +917,7 @@ int8_t stdlib_ndarray_set_ptr( const struct ndarray *arr, const uint8_t *idx, co
917
917
}
918
918
919
919
/**
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.
921
921
*
922
922
* ## Notes
923
923
*
@@ -933,7 +933,7 @@ int8_t stdlib_ndarray_set_ptr_float64( const uint8_t *idx, const double v ) {
933
933
}
934
934
935
935
/**
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.
937
937
*
938
938
* ## Notes
939
939
*
@@ -949,7 +949,7 @@ int8_t stdlib_ndarray_set_ptr_float32( const uint8_t *idx, const float v ) {
949
949
}
950
950
951
951
/**
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.
953
953
*
954
954
* ## Notes
955
955
*
@@ -965,7 +965,7 @@ int8_t stdlib_ndarray_set_ptr_uint64( const uint8_t *idx, const uint64_t v ) {
965
965
}
966
966
967
967
/**
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.
969
969
*
970
970
* ## Notes
971
971
*
@@ -981,7 +981,7 @@ int8_t stdlib_ndarray_set_ptr_int64( const uint8_t *idx, const int64_t v ) {
981
981
}
982
982
983
983
/**
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.
985
985
*
986
986
* ## Notes
987
987
*
@@ -997,7 +997,7 @@ int8_t stdlib_ndarray_set_ptr_uint32( const uint8_t *idx, const uint32_t v ) {
997
997
}
998
998
999
999
/**
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.
1001
1001
*
1002
1002
* ## Notes
1003
1003
*
@@ -1013,7 +1013,7 @@ int8_t stdlib_ndarray_set_ptr_int32( const uint8_t *idx, const int32_t v ) {
1013
1013
}
1014
1014
1015
1015
/**
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.
1017
1017
*
1018
1018
* ## Notes
1019
1019
*
@@ -1029,7 +1029,7 @@ int8_t stdlib_ndarray_set_ptr_uint16( const uint8_t *idx, const uint16_t v ) {
1029
1029
}
1030
1030
1031
1031
/**
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.
1033
1033
*
1034
1034
* ## Notes
1035
1035
*
@@ -1045,7 +1045,7 @@ int8_t stdlib_ndarray_set_ptr_int16( const uint8_t *idx, const int16_t v ) {
1045
1045
}
1046
1046
1047
1047
/**
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.
1049
1049
*
1050
1050
* ## Notes
1051
1051
*
@@ -1061,7 +1061,7 @@ int8_t stdlib_ndarray_set_ptr_uint8( const uint8_t *idx, const uint8_t v ) {
1061
1061
}
1062
1062
1063
1063
/**
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.
1065
1065
*
1066
1066
* ## Notes
1067
1067
*
0 commit comments