Skip to content

Commit ac05161

Browse files
committed
Auto-generated commit
1 parent 3d231dc commit ac05161

File tree

2 files changed

+23
-24
lines changed

2 files changed

+23
-24
lines changed

.github/.keepalive

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

docs/types/index.d.ts

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ interface Linspace {
182182
* @returns linearly spaced array
183183
*
184184
* @example
185-
* var Complex64 = require( `@stdlib/complex/float32` );
185+
* var Complex64 = require( '@stdlib/complex-float32' );
186186
*
187187
* var start = new Complex64( 0.0, 0.0 );
188188
* var stop = new Complex64( 100.0, 10.0 );
@@ -191,7 +191,7 @@ interface Linspace {
191191
* // returns <Complex64Array>
192192
*
193193
* @example
194-
* var Complex64 = require( `@stdlib/complex/float32` );
194+
* var Complex64 = require( '@stdlib/complex-float32' );
195195
*
196196
* var start = new Complex64( 0.0, 0.0 );
197197
* var stop = new Complex64( 100.0, 10.0 );
@@ -216,7 +216,7 @@ interface Linspace {
216216
* @returns linearly spaced array
217217
*
218218
* @example
219-
* var Complex64 = require( `@stdlib/complex/float32` );
219+
* var Complex64 = require( '@stdlib/complex-float32' );
220220
*
221221
* var start = new Complex64( 0.0, 0.0 );
222222
* var stop = new Complex64( 100.0, 10.0 );
@@ -241,7 +241,7 @@ interface Linspace {
241241
* @returns linearly spaced array
242242
*
243243
* @example
244-
* var Complex64 = require( `@stdlib/complex/float32` );
244+
* var Complex64 = require( '@stdlib/complex-float32' );
245245
*
246246
* var start = new Complex64( 0.0, 0.0 );
247247
* var stop = new Complex64( 100.0, 10.0 );
@@ -266,7 +266,7 @@ interface Linspace {
266266
* @returns linearly spaced array
267267
*
268268
* @example
269-
* var Complex128 = require( `@stdlib/complex/float64` );
269+
* var Complex128 = require( '@stdlib/complex-float64' );
270270
*
271271
* var start = new Complex128( 0.0, 0.0 );
272272
* var stop = new Complex128( 100.0, 10.0 );
@@ -291,7 +291,7 @@ interface Linspace {
291291
* @returns linearly spaced array
292292
*
293293
* @example
294-
* var Complex128 = require( `@stdlib/complex/float64` );
294+
* var Complex128 = require( '@stdlib/complex-float64' );
295295
*
296296
* var start = new Complex128( 0.0, 0.0 );
297297
* var stop = new Complex128( 100.0, 10.0 );
@@ -316,7 +316,7 @@ interface Linspace {
316316
* @returns linearly spaced array
317317
*
318318
* @example
319-
* var Complex128 = require( `@stdlib/complex/float64` );
319+
* var Complex128 = require( '@stdlib/complex-float64' );
320320
*
321321
* var start = new Complex128( 0.0, 0.0 );
322322
* var stop = 100.0;
@@ -325,7 +325,7 @@ interface Linspace {
325325
* // returns <Complex128Array>
326326
*
327327
* @example
328-
* var Complex128 = require( `@stdlib/complex/float64` );
328+
* var Complex128 = require( '@stdlib/complex-float64' );
329329
*
330330
* var start = new Complex128( 0.0, 0.0 );
331331
* var stop = 100.0;
@@ -350,7 +350,7 @@ interface Linspace {
350350
* @returns linearly spaced array
351351
*
352352
* @example
353-
* var Complex128 = require( `@stdlib/complex/float64` );
353+
* var Complex128 = require( '@stdlib/complex-float64' );
354354
*
355355
* var start = 0.0;
356356
* var stop = new Complex128( 100.0, 10.0 );
@@ -359,7 +359,7 @@ interface Linspace {
359359
* // returns <Complex128Array>
360360
*
361361
* @example
362-
* var Complex128 = require( `@stdlib/complex/float64` );
362+
* var Complex128 = require( '@stdlib/complex-float64' );
363363
*
364364
* var start = 0.0;
365365
* var stop = new Complex128( 100.0, 10.0 );
@@ -423,7 +423,7 @@ interface Linspace {
423423
* @returns output array
424424
*
425425
* @example
426-
* var Float64Array = require( `@stdlib/array/float64` );
426+
* var Float64Array = require( '@stdlib/array-float64' );
427427
*
428428
* var out = new Float64Array( 6 );
429429
* var arr = linspace.assign( 0.0, 100.0, out );
@@ -442,7 +442,7 @@ interface Linspace {
442442
* @returns output array
443443
*
444444
* @example
445-
* var Float32Array = require( `@stdlib/array/float32` );
445+
* var Float32Array = require( '@stdlib/array-float32' );
446446
*
447447
* var out = new Float32Array( 6 );
448448
* var arr = linspace.assign( 0.0, 100.0, out );
@@ -478,7 +478,7 @@ interface Linspace {
478478
* @returns output array
479479
*
480480
* @example
481-
* var Complex64 = require( `@stdlib/complex/float32` );
481+
* var Complex64 = require( '@stdlib/complex-float32' );
482482
*
483483
* var start = new Complex64( 0.0, 0.0 );
484484
* var stop = new Complex64( 100.0, 10.0 );
@@ -500,7 +500,7 @@ interface Linspace {
500500
* @returns output array
501501
*
502502
* @example
503-
* var Complex128 = require( `@stdlib/complex/float64` );
503+
* var Complex128 = require( '@stdlib/complex-float64' );
504504
*
505505
* var start = new Complex128( 0.0, 0.0 );
506506
* var stop = new Complex128( 100.0, 10.0 );
@@ -522,7 +522,7 @@ interface Linspace {
522522
* @returns output array
523523
*
524524
* @example
525-
* var Complex128 = require( `@stdlib/complex/float64` );
525+
* var Complex128 = require( '@stdlib/complex-float64' );
526526
*
527527
* var start = new Complex128( 0.0, 0.0 );
528528
* var stop = new Complex128( 100.0, 10.0 );
@@ -544,7 +544,7 @@ interface Linspace {
544544
* @returns output array
545545
*
546546
* @example
547-
* var Complex128Array = require( `@stdlib/array/complex128` );
547+
* var Complex128Array = require( '@stdlib/array-complex128' );
548548
*
549549
* var out = new Complex128Array( 6 );
550550
* var arr = linspace.assign( 0.0, 100.0, out );
@@ -563,7 +563,7 @@ interface Linspace {
563563
* @returns output array
564564
*
565565
* @example
566-
* var Complex64Array = require( `@stdlib/array/complex64` );
566+
* var Complex64Array = require( '@stdlib/array-complex64' );
567567
*
568568
* var out = new Complex64Array( 6 );
569569
* var arr = linspace.assign( 0.0, 100.0, out );
@@ -582,7 +582,7 @@ interface Linspace {
582582
* @returns output array
583583
*
584584
* @example
585-
* var Float64Array = require( `@stdlib/array/float64` );
585+
* var Float64Array = require( '@stdlib/array-float64' );
586586
*
587587
* var out = new Float64Array( 6 );
588588
* var arr = linspace.assign( 0.0, 100.0, out );
@@ -601,8 +601,8 @@ interface Linspace {
601601
* @returns output array
602602
*
603603
* @example
604-
* var Float64Array = require( `@stdlib/array/float64` );
605-
* var Complex64 = require( `@stdlib/complex/float32` );
604+
* var Float64Array = require( '@stdlib/array-float64' );
605+
* var Complex64 = require( '@stdlib/complex-float32' );
606606
*
607607
* var start = new Complex64( 0.0, 0.0 );
608608
* var stop = new Complex64( 100.0, 10.0 );
@@ -624,8 +624,8 @@ interface Linspace {
624624
* @returns output array
625625
*
626626
* @example
627-
* var Float64Array = require( `@stdlib/array/float64` );
628-
* var Complex64 = require( `@stdlib/complex/float32` );
627+
* var Float64Array = require( '@stdlib/array-float64' );
628+
* var Complex64 = require( '@stdlib/complex-float32' );
629629
*
630630
* var start = new Complex64( 0.0, 0.0 );
631631
* var stop = new Complex64( 100.0, 10.0 );
@@ -653,7 +653,7 @@ interface Linspace {
653653
* // returns <Float64Array>[ 0.0, 20.0, 40.0, 60.0, 80.0, 100.0 ]
654654
*
655655
* @example
656-
* var Float32Array = require( `@stdlib/array/float32` );
656+
* var Float32Array = require( '@stdlib/array-float32' );
657657
*
658658
* var arr = new Float32Array( 6 );
659659
* var out = linspace.assign( 0.0, 100.0, arr );

0 commit comments

Comments
 (0)