Skip to content

Commit ec640c3

Browse files
committed
Auto-generated commit
1 parent 05ff89a commit ec640c3

File tree

46 files changed

+177
-177
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+177
-177
lines changed

buffer/README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -233,16 +233,16 @@ for ( i = 0; i < bytes.length; i++ ) {
233233
## See Also
234234

235235
- [`@stdlib/buffer/ctor`][@stdlib/buffer/ctor]: buffer.
236-
- [`@stdlib/array/float32`][@stdlib/array/float32]: https://github.com/stdlib-js/array/tree/main/float32`][@stdlib/array/float32
237-
- [`@stdlib/array/float64`][@stdlib/array/float64]: https://github.com/stdlib-js/array/tree/main/float64`][@stdlib/array/float64
238-
- [`@stdlib/array/int16`][@stdlib/array/int16]: https://github.com/stdlib-js/array/tree/main/int16`][@stdlib/array/int16
239-
- [`@stdlib/array/int32`][@stdlib/array/int32]: https://github.com/stdlib-js/array/tree/main/int32`][@stdlib/array/int32
240-
- [`@stdlib/array/int8`][@stdlib/array/int8]: https://github.com/stdlib-js/array/tree/main/int8`][@stdlib/array/int8
241-
- [`@stdlib/array/shared-buffer`][@stdlib/array/shared-buffer]: https://github.com/stdlib-js/array/tree/main/shared-buffer`][@stdlib/array/shared-buffer
242-
- [`@stdlib/array/uint16`][@stdlib/array/uint16]: https://github.com/stdlib-js/array/tree/main/uint16`][@stdlib/array/uint16
243-
- [`@stdlib/array/uint32`][@stdlib/array/uint32]: https://github.com/stdlib-js/array/tree/main/uint32`][@stdlib/array/uint32
244-
- [`@stdlib/array/uint8`][@stdlib/array/uint8]: https://github.com/stdlib-js/array/tree/main/uint8`][@stdlib/array/uint8
245-
- [`@stdlib/array/uint8c`][@stdlib/array/uint8c]: https://github.com/stdlib-js/array/tree/main/uint8c`][@stdlib/array/uint8c
236+
- [`@stdlib/array/float32`][@stdlib/array/float32]: float32Array.
237+
- [`@stdlib/array/float64`][@stdlib/array/float64]: Float64Array.
238+
- [`@stdlib/array/int16`][@stdlib/array/int16]: Int16Array.
239+
- [`@stdlib/array/int32`][@stdlib/array/int32]: Int32Array.
240+
- [`@stdlib/array/int8`][@stdlib/array/int8]: Int8Array.
241+
- [`@stdlib/array/shared-buffer`][@stdlib/array/shared-buffer]: sharedArrayBuffer.
242+
- [`@stdlib/array/uint16`][@stdlib/array/uint16]: Uint16Array.
243+
- [`@stdlib/array/uint32`][@stdlib/array/uint32]: Uint32Array.
244+
- [`@stdlib/array/uint8`][@stdlib/array/uint8]: Uint8Array.
245+
- [`@stdlib/array/uint8c`][@stdlib/array/uint8c]: Uint8ClampedArray.
246246

247247
</section>
248248

complex128/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ console.log( out );
126126

127127
## See Also
128128

129-
- [`@stdlib/array/complex64`][@stdlib/array/complex64]: https://github.com/stdlib-js/array/tree/main/complex64`][@stdlib/array/complex64
129+
- [`@stdlib/array/complex64`][@stdlib/array/complex64]: complex64Array.
130130
- [`@stdlib/complex/cmplx`][@stdlib/complex/cmplx]: create a complex number.
131131
- [`@stdlib/complex/float64`][@stdlib/complex/float64]: 128-bit complex number.
132132

complex64/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -895,7 +895,7 @@ console.log( out );
895895

896896
## See Also
897897

898-
- [`@stdlib/array/complex128`][@stdlib/array/complex128]: https://github.com/stdlib-js/array/tree/main/complex128`][@stdlib/array/complex128
898+
- [`@stdlib/array/complex128`][@stdlib/array/complex128]: complex128Array.
899899
- [`@stdlib/complex/cmplx`][@stdlib/complex/cmplx]: create a complex number.
900900
- [`@stdlib/complex/float32`][@stdlib/complex/float32]: 64-bit complex number.
901901

convert-same/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ for ( i = 0; i < DTYPES.length; i++ ) {
138138

139139
## See Also
140140

141-
- [`@stdlib/array/convert`][@stdlib/array/convert]: https://github.com/stdlib-js/array/tree/main/convert`][@stdlib/array/convert
141+
- [`@stdlib/array/convert`][@stdlib/array/convert]: convert an array to an array of a different data type.
142142

143143
</section>
144144

convert/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ for ( i = 0; i < DTYPES.length; i++ ) {
127127

128128
## See Also
129129

130-
- [`@stdlib/array/convert-same`][@stdlib/array/convert-same]: https://github.com/stdlib-js/array/tree/main/convert-same`][@stdlib/array/convert-same
130+
- [`@stdlib/array/convert-same`][@stdlib/array/convert-same]: convert an array to the same data type as a second input array.
131131

132132
</section>
133133

ctors/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ for ( i = 0; i < DTYPES.length; i++ ) {
123123

124124
## See Also
125125

126-
- [`@stdlib/array/typed-ctors`][@stdlib/array/typed-ctors]: https://github.com/stdlib-js/array/tree/main/typed-ctors`][@stdlib/array/typed-ctors
126+
- [`@stdlib/array/typed-ctors`][@stdlib/array/typed-ctors]: typed array constructors.
127127

128128
</section>
129129

dataview/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@ for ( i = 0; i < bytes.length; i++ ) {
188188

189189
## See Also
190190

191-
- [`@stdlib/array/buffer`][@stdlib/array/buffer]: https://github.com/stdlib-js/array/tree/main/buffer`][@stdlib/array/buffer
192-
- [`@stdlib/array/typed`][@stdlib/array/typed]: https://github.com/stdlib-js/array/tree/main/typed`][@stdlib/array/typed
191+
- [`@stdlib/array/buffer`][@stdlib/array/buffer]: arrayBuffer.
192+
- [`@stdlib/array/typed`][@stdlib/array/typed]: create a typed array.
193193

194194
</section>
195195

datespace/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,8 @@ console.log( arr.join( '\n' ) );
160160

161161
## See Also
162162

163-
- [`@stdlib/array/linspace`][@stdlib/array/linspace]: https://github.com/stdlib-js/array/tree/main/linspace`][@stdlib/array/linspace
164-
- [`@stdlib/array/logspace`][@stdlib/array/logspace]: https://github.com/stdlib-js/array/tree/main/logspace`][@stdlib/array/logspace
163+
- [`@stdlib/array/linspace`][@stdlib/array/linspace]: generate a linearly spaced numeric array.
164+
- [`@stdlib/array/logspace`][@stdlib/array/logspace]: generate a logarithmically spaced numeric array.
165165

166166
</section>
167167

dtype/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ for ( i = 0; i < DTYPES.length; i++ ) {
128128

129129
## See Also
130130

131-
- [`@stdlib/array/dtypes`][@stdlib/array/dtypes]: https://github.com/stdlib-js/array/tree/main/dtypes`][@stdlib/array/dtypes
131+
- [`@stdlib/array/dtypes`][@stdlib/array/dtypes]: list of array data types.
132132

133133
</section>
134134

dtypes/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ bool = isdtype( 'beep' );
129129

130130
## See Also
131131

132-
- [`@stdlib/array/typed-dtypes`][@stdlib/array/typed-dtypes]: https://github.com/stdlib-js/array/tree/main/typed-dtypes`][@stdlib/array/typed-dtypes
132+
- [`@stdlib/array/typed-dtypes`][@stdlib/array/typed-dtypes]: list of typed array data types.
133133
- [`@stdlib/ndarray/dtypes`][@stdlib/ndarray/dtypes]: list of ndarray data types.
134134

135135
</section>

0 commit comments

Comments
 (0)