Skip to content

Commit d02089a

Browse files
committed
chore: minor clean-up
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: passed - task: lint_license_headers status: passed ---
1 parent 18f1915 commit d02089a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3277,7 +3277,7 @@ interface Namespace {
32773277
* @returns string representation
32783278
*
32793279
* @example
3280-
* var array = require( `@stdlib/ndarray/array` );
3280+
* var array = require( '@stdlib/ndarray/array' );
32813281
*
32823282
* var x = array( [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ] );
32833283
* // returns <ndarray>

lib/node_modules/@stdlib/ndarray/to-locale-string/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import { ndarray } from '@stdlib/types/ndarray';
3535
* @returns string representation
3636
*
3737
* @example
38-
* var array = require( `@stdlib/ndarray/array` );
38+
* var array = require( '@stdlib/ndarray/array' );
3939
*
4040
* var x = array( [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ] );
4141
* // returns <ndarray>

lib/node_modules/@stdlib/stats/base/ndarray/dmeanors/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ int main( void ) {
210210
// Specify the number of array dimensions:
211211
const int64_t ndims = 1;
212212

213-
// Specify the array shape:
213+
// Specify the array shape:
214214
int64_t shape[] = { 4 };
215215

216216
// Specify the array strides:

0 commit comments

Comments
 (0)