Skip to content

Commit c3534d3

Browse files
committed
refactor: rename parameters in kurtosis
--- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na ---
1 parent e1c56c1 commit c3534d3

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/weibull/kurtosis/lib

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/base/dists/weibull/kurtosis/lib/native.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ var addon = require( './../src/addon.node' );
6161
* var v = kurtosis( NaN, 2.0 );
6262
* // returns NaN
6363
*/
64-
function kurtosis( alpha, beta ) {
65-
return addon( alpha, beta );
64+
function kurtosis( k, lambda ) {
65+
return addon( k, lambda );
6666
}
6767

6868

0 commit comments

Comments
 (0)