Skip to content

Commit 8eb4529

Browse files
committed
style: use single quotes for require call in ndarray/base/unflatten and ndarray/remove-singleton-dimensions
1 parent 26285c6 commit 8eb4529

File tree

2 files changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/ndarray

2 files changed

+2
-2
lines changed

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)