Skip to content

Commit 0b4edd7

Browse files
authored
style: fix require statements
PR-URL: #11478 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent 93c9868 commit 0b4edd7

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/lapack/base/docs/types

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/lapack/base/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ interface Namespace {
253253
* @returns `out`
254254
*
255255
* @example
256-
* var Float64Array = require( `@stdlib/array/float64` );
256+
* var Float64Array = require( '@stdlib/array/float64' );
257257
*
258258
* var A = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
259259
* var out = new Float64Array( 6 );
@@ -262,7 +262,7 @@ interface Namespace {
262262
* // returns <Float64Array>[ 1.0, 4.0, 2.0, 5.0, 3.0, 6.0 ]
263263
*
264264
* @example
265-
* var Float64Array = require( `@stdlib/array/float64` );
265+
* var Float64Array = require( '@stdlib/array/float64' );
266266
*
267267
* var A = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
268268
* var out = new Float64Array( 6 );

0 commit comments

Comments
 (0)