Skip to content

Commit a4ea6aa

Browse files
committed
Auto-generated commit
1 parent c81c2eb commit a4ea6aa

File tree

2 files changed

+11
-12
lines changed

2 files changed

+11
-12
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/types/index.d.ts

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import { RealOrComplexTypedArray, Complex128Array, Complex64Array, DataType } fr
2929
* @returns data type
3030
*
3131
* @example
32-
* var Float64Array = require( `@stdlib/array/float64` );
32+
* var Float64Array = require( '@stdlib/array-float64' );
3333
*
3434
* var dt = dtype( new Float64Array( [ 1, 2, 3 ] ) );
3535
* // returns 'float64'
@@ -43,7 +43,7 @@ declare function dtype( value: Float64Array ): 'float64';
4343
* @returns data type
4444
*
4545
* @example
46-
* var Float32Array = require( `@stdlib/array/float32` );
46+
* var Float32Array = require( '@stdlib/array-float32' );
4747
*
4848
* var dt = dtype( new Float32Array( [ 1, 2, 3 ] ) );
4949
* // returns 'float32'
@@ -57,7 +57,7 @@ declare function dtype( value: Float32Array ): 'float32';
5757
* @returns data type
5858
*
5959
* @example
60-
* var Complex128Array = require( `@stdlib/array/complex128` );
60+
* var Complex128Array = require( '@stdlib/array-complex128' );
6161
*
6262
* var dt = dtype( new Complex128Array( [ 1, 2, 3, 4 ] ) );
6363
* // returns 'complex128'
@@ -71,7 +71,7 @@ declare function dtype( value: Complex128Array ): 'complex128';
7171
* @returns data type
7272
*
7373
* @example
74-
* var Complex64Array = require( `@stdlib/array/complex64` );
74+
* var Complex64Array = require( '@stdlib/array-complex64' );
7575
*
7676
* var dt = dtype( new Complex64Array( [ 1, 2, 3, 4 ] ) );
7777
* // returns 'complex64'
@@ -85,7 +85,7 @@ declare function dtype( value: Complex64Array ): 'complex64';
8585
* @returns data type
8686
*
8787
* @example
88-
* var Int32Array = require( `@stdlib/array/int32` );
88+
* var Int32Array = require( '@stdlib/array-int32' );
8989
*
9090
* var dt = dtype( new Int32Array( [ 1, 2, 3 ] ) );
9191
* // returns 'int32'
@@ -99,7 +99,7 @@ declare function dtype( value: Int32Array ): 'int32';
9999
* @returns data type
100100
*
101101
* @example
102-
* var Int16Array = require( `@stdlib/array/int16` );
102+
* var Int16Array = require( '@stdlib/array-int16' );
103103
*
104104
* var dt = dtype( new Int16Array( [ 1, 2, 3 ] ) );
105105
* // returns 'int16'
@@ -113,7 +113,7 @@ declare function dtype( value: Int16Array ): 'int16';
113113
* @returns data type
114114
*
115115
* @example
116-
* var Int8Array = require( `@stdlib/array/int8` );
116+
* var Int8Array = require( '@stdlib/array-int8' );
117117
*
118118
* var dt = dtype( new Int8Array( [ 1, 2, 3 ] ) );
119119
* // returns 'int8'
@@ -127,7 +127,7 @@ declare function dtype( value: Int8Array ): 'int8';
127127
* @returns data type
128128
*
129129
* @example
130-
* var Uint32Array = require( `@stdlib/array/uint32` );
130+
* var Uint32Array = require( '@stdlib/array-uint32' );
131131
*
132132
* var dt = dtype( new Uint32Array( [ 1, 2, 3 ] ) );
133133
* // returns 'uint32'
@@ -141,7 +141,7 @@ declare function dtype( value: Uint32Array ): 'uint32';
141141
* @returns data type
142142
*
143143
* @example
144-
* var Uint16Array = require( `@stdlib/array/uint16` );
144+
* var Uint16Array = require( '@stdlib/array-uint16' );
145145
*
146146
* var dt = dtype( new Uint16Array( [ 1, 2, 3 ] ) );
147147
* // returns 'uint16'
@@ -155,7 +155,7 @@ declare function dtype( value: Uint16Array ): 'uint16';
155155
* @returns data type
156156
*
157157
* @example
158-
* var Uint8Array = require( `@stdlib/array/uint8` );
158+
* var Uint8Array = require( '@stdlib/array-uint8' );
159159
*
160160
* var dt = dtype( new Uint8Array( [ 1, 2, 3 ] ) );
161161
* // returns 'uint8'
@@ -169,7 +169,7 @@ declare function dtype( value: Uint8Array ): 'uint8';
169169
* @returns data type
170170
*
171171
* @example
172-
* var Uint8ClampedArray = require( `@stdlib/array/uint8c` );
172+
* var Uint8ClampedArray = require( '@stdlib/array-uint8c' );
173173
*
174174
* var dt = dtype( new Uint8ClampedArray( [ 1, 2, 3 ] ) );
175175
* // returns 'uint8c'

0 commit comments

Comments
 (0)