Skip to content

Commit 2f2b3be

Browse files
authored
Discard changes to lib/node_modules/@stdlib/stats/chi2gof/lib/main.js
1 parent bf6a534 commit 2f2b3be

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/stats/chi2gof/lib

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/chi2gof/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ function chi2gof( x, y ) {
132132
if ( pmf instanceof Error ) {
133133
throw pmf;
134134
}
135-
nargs += pmf.length - 1; // NOTE: this relies on PMF functions having an explicit arity
135+
nargs += pmf.length - 1; // WARNING: this relies on PMF functions having an explicit arity
136136
args = [ 0 ];
137137
for ( i = 0; i < nargs; i++ ) {
138138
v = arguments[ i+2 ];
@@ -203,7 +203,7 @@ function chi2gof( x, y ) {
203203
throw err;
204204
}
205205
}
206-
stat = testStatistic( N, obs, 1, expected, 1 ); // consider replacing with low-level double-precision strided interface in future
206+
stat = testStatistic( N, obs, 1, expected, 1 ); // TODO: consider replacing with low-level double-precision strided interface
207207
if ( opts.simulate ) {
208208
if ( p === void 0 ) {
209209
v = dsumpw( N, expected, 1 );

0 commit comments

Comments
 (0)