Skip to content

Commit c07940c

Browse files
committed
docs: fix parameter names
--- 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: 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 6c7a45f commit c07940c

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

  • lib/node_modules/@stdlib/random/normal/docs/types

lib/node_modules/@stdlib/random/normal/docs/types/index.d.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,8 @@ interface RandomFunction extends PRNG {
126126
* Returns an ndarray containing pseudorandom numbers drawn from a normal distribution.
127127
*
128128
* @param shape - output shape
129-
* @param a - mean
130-
* @param b - standard deviation
129+
* @param mu - mean
130+
* @param sigma - standard deviation
131131
* @param options - function options
132132
* @throws distribution parameters and the output shape must be broadcast compatible
133133
* @returns output ndarray
@@ -137,8 +137,8 @@ interface RandomFunction extends PRNG {
137137
/**
138138
* Fills an ndarray with pseudorandom numbers drawn from a normal distribution.
139139
*
140-
* @param a - mean
141-
* @param b - standard deviation
140+
* @param mu - mean
141+
* @param sigma - standard deviation
142142
* @param out - output ndarray
143143
* @throws distribution parameters and the output ndarray must be broadcast compatible
144144
* @returns output ndarray
@@ -154,8 +154,8 @@ interface Random extends PRNG {
154154
* Returns an ndarray containing pseudorandom numbers drawn from a normal distribution.
155155
*
156156
* @param shape - output shape
157-
* @param a - mean
158-
* @param b - standard deviation
157+
* @param mu - mean
158+
* @param sigma - standard deviation
159159
* @param options - function options
160160
* @throws distribution parameters and the output shape must be broadcast compatible
161161
* @returns output ndarray
@@ -169,8 +169,8 @@ interface Random extends PRNG {
169169
/**
170170
* Fills an ndarray with pseudorandom numbers drawn from a normal distribution.
171171
*
172-
* @param a - mean
173-
* @param b - standard deviation
172+
* @param mu - mean
173+
* @param sigma - standard deviation
174174
* @param out - output ndarray
175175
* @throws distribution parameters and the output ndarray must be broadcast compatible
176176
* @returns output ndarray
@@ -216,8 +216,8 @@ interface Random extends PRNG {
216216
* Generates pseudorandom numbers drawn from a normal distribution.
217217
*
218218
* @param shape - output shape
219-
* @param a - mean
220-
* @param b - standard deviation
219+
* @param mu - mean
220+
* @param sigma - standard deviation
221221
* @param options - function options
222222
* @throws distribution parameters and the output shape must be broadcast compatible
223223
* @returns output ndarray

0 commit comments

Comments
 (0)