Skip to content

Commit 3af178c

Browse files
authored
style: use single quotes for require calls
PR-URL: #11516 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent d4a3c9c commit 3af178c

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

lib/node_modules/@stdlib/ndarray/base/to-unflattened/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import { ndarray } from '@stdlib/types/ndarray';
3131
* @returns output array
3232
*
3333
* @example
34-
* var array = require( `@stdlib/ndarray/array` );
34+
* var array = require( '@stdlib/ndarray/array' );
3535
*
3636
* var x = array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
3737
* // returns <ndarray>[ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import { ndarray } from '@stdlib/types/ndarray';
3232
* @returns output array
3333
*
3434
* @example
35-
* var array = require( `@stdlib/ndarray/array` );
35+
* var array = require( '@stdlib/ndarray/array' );
3636
*
3737
* var x = array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
3838
* // returns <ndarray>[ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ]

lib/node_modules/@stdlib/ndarray/remove-singleton-dimensions/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import { typedndarray } from '@stdlib/types/ndarray';
2929
* @returns output array
3030
*
3131
* @example
32-
* var array = require( `@stdlib/ndarray/array` );
32+
* var array = require( '@stdlib/ndarray/array' );
3333
*
3434
* var x = array( [ [ 1, 2 ], [ 3, 4 ] ], {
3535
* 'ndmin': 5

0 commit comments

Comments
 (0)