Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion etc/eslint/rules/spellcheck.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,11 @@ rules[ '@cspell/spellchecker' ] = [ 'warn', {
'trigamma',
'uncapitalize',
'unregularized',
'Fréchet'
'Fréchet',
'cceil',
'cadd',
'अनुच्छेद',
'nega'
]
}
}];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ var isDataView = require( '@stdlib/assert/is-dataview' );
*
* @example
* var Int8Array = require( '@stdlib/array/int8' );

* var bool = isArrayBufferView( new Int8Array( 10 ) );
* // returns true
*
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/stats/chi2gof/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ function chi2gof( x, y ) {
if ( pmf instanceof Error ) {
throw pmf;
}
nargs += pmf.length - 1; // WARNING: this relies on PMF functions having an explicit arity
nargs += pmf.length - 1; // NOTE: this relies on PMF functions having an explicit arity
args = [ 0 ];
for ( i = 0; i < nargs; i++ ) {
v = arguments[ i+2 ];
Expand Down Expand Up @@ -203,7 +203,7 @@ function chi2gof( x, y ) {
throw err;
}
}
stat = testStatistic( N, obs, 1, expected, 1 ); // TODO: consider replacing with low-level double-precision strided interface
stat = testStatistic( N, obs, 1, expected, 1 ); // consider replacing with low-level double-precision strided interface in future
if ( opts.simulate ) {
if ( p === void 0 ) {
v = dsumpw( N, expected, 1 );
Expand Down
Loading