Skip to content

Commit d9ce9f3

Browse files
committed
style: use single quotes in blas/ext/base/dcartesian-power JSDoc requires
Replace backtick-quoted `require()` strings in the TypeScript declarations with single-quoted strings to match the rest of stdlib's TypeScript declaration files.
1 parent 221311b commit d9ce9f3

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

  • lib/node_modules/@stdlib/blas/ext/base/dcartesian-power/docs/types

lib/node_modules/@stdlib/blas/ext/base/dcartesian-power/docs/types/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ interface Routine {
4343
* @returns output array
4444
*
4545
* @example
46-
* var Float64Array = require( `@stdlib/array/float64` );
46+
* var Float64Array = require( '@stdlib/array/float64' );
4747
*
4848
* var x = new Float64Array( [ 1.0, 2.0 ] );
4949
* var out = new Float64Array( 8 );
@@ -72,7 +72,7 @@ interface Routine {
7272
* @returns output array
7373
*
7474
* @example
75-
* var Float64Array = require( `@stdlib/array/float64` );
75+
* var Float64Array = require( '@stdlib/array/float64' );
7676
*
7777
* var x = new Float64Array( [ 1.0, 2.0 ] );
7878
* var out = new Float64Array( 8 );
@@ -96,7 +96,7 @@ interface Routine {
9696
* @returns output array
9797
*
9898
* @example
99-
* var Float64Array = require( `@stdlib/array/float64` );
99+
* var Float64Array = require( '@stdlib/array/float64' );
100100
*
101101
* var x = new Float64Array( [ 1.0, 2.0 ] );
102102
* var out = new Float64Array( 8 );
@@ -105,7 +105,7 @@ interface Routine {
105105
* // out => <Float64Array>[ 1.0, 1.0, 1.0, 2.0, 2.0, 1.0, 2.0, 2.0 ]
106106
*
107107
* @example
108-
* var Float64Array = require( `@stdlib/array/float64` );
108+
* var Float64Array = require( '@stdlib/array/float64' );
109109
*
110110
* var x = new Float64Array( [ 1.0, 2.0 ] );
111111
* var out = new Float64Array( 8 );

0 commit comments

Comments
 (0)