Skip to content

Commit bff4c92

Browse files
committed
Auto-generated commit
1 parent 38de29c commit bff4c92

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ A total of 3 people contributed to this release. Thank you to the following cont
3434

3535
<details>
3636

37+
- [`7fb04a9`](https://github.com/stdlib-js/stdlib/commit/7fb04a92ebae797788f7047feac1caaf6a7a1f4f) - **style:** add missing spaces around parentheses _(by Philipp Burckhardt)_
3738
- [`d7bf560`](https://github.com/stdlib-js/stdlib/commit/d7bf560813d0f6cd44418dad0e8e84dd3f0a1596) - **docs:** improve examples of `stats/base/dists/gumbel` _(by olenkabilonizhka, Philipp Burckhardt)_
3839
- [`9e689ff`](https://github.com/stdlib-js/stdlib/commit/9e689ffcb7c6223afc521f1e574b42f10921cf5e) - **chore:** fix indentation in manifest.json files _(by Philipp Burckhardt)_
3940
- [`6e9f42e`](https://github.com/stdlib-js/stdlib/commit/6e9f42e4c912485d9896eaa16c88b70fd3688e97) - **docs:** harmonize list formatting in repl.txt and ensure starting newline _(by Philipp Burckhardt)_

base/dists/gumbel/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ var y = dist.pdf( 2.0 );
110110

111111
```javascript
112112
var Float64Array = require( '@stdlib/array/float64' );
113-
var filledarrayBy = require('@stdlib/array/filled-by');
113+
var filledarrayBy = require( '@stdlib/array/filled-by' );
114114
var mean = require( '@stdlib/stats/base/mean' );
115115
var variance = require( '@stdlib/stats/base/variance' );
116116
var stdev = require( '@stdlib/stats/base/stdev' );

base/dists/gumbel/examples/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'use strict';
2020

2121
var Float64Array = require( '@stdlib/array/float64' );
22-
var filledarrayBy = require('@stdlib/array/filled-by');
22+
var filledarrayBy = require( '@stdlib/array/filled-by' );
2323
var mean = require( './../../../../base/mean' );
2424
var variance = require( './../../../../base/variance' );
2525
var stdev = require( './../../../../base/stdev' );

0 commit comments

Comments
 (0)