Skip to content

Commit b7857ad

Browse files
committed
docs: fix comment
--- 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: na - 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: passed - 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent ebadfbe commit b7857ad

File tree

1 file changed

+5
-5
lines changed
  • lib/node_modules/@stdlib/stats/base/ndarray/sztest/test

1 file changed

+5
-5
lines changed

lib/node_modules/@stdlib/stats/base/ndarray/sztest/test/test.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ tape( 'the function performs a Z-test over a one-dimensional ndarray (two-sided)
9494
mu = scalar2ndarray( 0.0, opts );
9595
sigma = scalar2ndarray( 1.0, opts );
9696

97-
// Generate a large enough to array to effectively guarantee results...
97+
// Generate a large enough array to effectively guarantee results...
9898
xbuf = zeros( 10000, opts.dtype );
9999
normal( xbuf.length, [ 0.0 ], 0, 0, [ 1.0 ], 0, 0, xbuf, 1, 0, RANDOM_OPTS );
100100
x = vector( xbuf, xbuf.length, 1, 0 );
@@ -144,7 +144,7 @@ tape( 'the function performs a Z-test over a one-dimensional ndarray (less)', fu
144144
mu = scalar2ndarray( 0.0, opts );
145145
sigma = scalar2ndarray( 1.0, opts );
146146

147-
// Generate a large enough to array to effectively guarantee results...
147+
// Generate a large enough array to effectively guarantee results...
148148
xbuf = zeros( 10000, opts.dtype );
149149
normal( xbuf.length, [ -1000.0 ], 0, 0, [ 1.0 ], 0, 0, xbuf, 1, 0, RANDOM_OPTS );
150150
x = vector( xbuf, xbuf.length, 1, 0 );
@@ -188,7 +188,7 @@ tape( 'the function performs a Z-test over a one-dimensional ndarray (greater)',
188188
mu = scalar2ndarray( 0.0, opts );
189189
sigma = scalar2ndarray( 1.0, opts );
190190

191-
// Generate a large enough to array to effectively guarantee results...
191+
// Generate a large enough array to effectively guarantee results...
192192
xbuf = zeros( 10000, opts.dtype );
193193
normal( xbuf.length, [ -1000.0 ], 0, 0, [ 1.0 ], 0, 0, xbuf, 1, 0, RANDOM_OPTS );
194194
x = vector( xbuf, xbuf.length, 1, 0 );
@@ -232,7 +232,7 @@ tape( 'the function supports one-dimensional ndarrays having non-unit strides',
232232
mu = scalar2ndarray( 0.0, opts );
233233
sigma = scalar2ndarray( 1.0, opts );
234234

235-
// Generate a large enough to array to effectively guarantee results...
235+
// Generate a large enough array to effectively guarantee results...
236236
xbuf = zeros( 10000, opts.dtype );
237237
normal( 5000, [ 0.0 ], 0, 0, [ 1.0 ], 0, 0, xbuf, 2, 0, RANDOM_OPTS );
238238
x = vector( xbuf, 5000, 2, 0 );
@@ -276,7 +276,7 @@ tape( 'the function supports one-dimensional ndarrays having non-zero offsets',
276276
mu = scalar2ndarray( 0.0, opts );
277277
sigma = scalar2ndarray( 1.0, opts );
278278

279-
// Generate a large enough to array to effectively guarantee results...
279+
// Generate a large enough array to effectively guarantee results...
280280
xbuf = zeros( 10000, opts.dtype );
281281
normal( 5000, [ 0.0 ], 0, 0, [ 1.0 ], 0, 0, xbuf, 1, 5000, RANDOM_OPTS );
282282
x = vector( xbuf, 5000, 1, 5000 );

0 commit comments

Comments
 (0)