Skip to content

Commit 8f7ce32

Browse files
committed
chore: clean-up
--- 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: passed - 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: passed - 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 8db8a75 commit 8f7ce32

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

lib/node_modules/@stdlib/stats/base/dists/weibull/mode/README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ for ( i = 0; i < 10; i++ ) {
176176

177177
#### stdlib_base_dists_weibull_mode( k, lambda )
178178

179-
Evaluates the mode for an weibull distribution.
179+
Returns the [mode][mode] of a [Weibull][weibull-distribution] distribution with parameters `k` (shape parameter) and `lambda` (scale parameter).
180180

181181
```c
182182
double out = stdlib_base_dists_weibull_mode( 4.0, 12.0 );
@@ -186,7 +186,7 @@ double out = stdlib_base_dists_weibull_mode( 4.0, 12.0 );
186186
The function accepts the following arguments:
187187

188188
- **k**: `[in] double` shape parameter.
189-
- **λ**: `[in] double` scale parameter.
189+
- **lambda**: `[in] double` scale parameter.
190190

191191
```c
192192
double stdlib_base_dists_weibull_mode( const double k, const double λ );
@@ -238,6 +238,12 @@ int main( void ) {
238238

239239
</section>
240240

241+
<!-- /.examples -->
242+
243+
</section>
244+
245+
<!-- /.c -->
246+
241247
<!-- Section to include cited references. If references are included, add a horizontal rule *before* the section. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
242248

243249
<section class="references">

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var opts = {
4040

4141
// MAIN //
4242

43-
bench( pkg, opts, function benchmark( b ) {
43+
bench( pkg+'::native', opts, function benchmark( b ) {
4444
var lambda;
4545
var len;
4646
var k;

0 commit comments

Comments
 (0)