From bff4c920f20f3d48bde9fc7ef24eeed4aaad5dba Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Tue, 24 Sep 2024 00:45:57 +0000 Subject: [PATCH] Auto-generated commit --- CHANGELOG.md | 1 + base/dists/gumbel/README.md | 2 +- base/dists/gumbel/examples/index.js | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 49980b7f..aaea3c02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,7 @@ A total of 3 people contributed to this release. Thank you to the following cont
+- [`7fb04a9`](https://github.com/stdlib-js/stdlib/commit/7fb04a92ebae797788f7047feac1caaf6a7a1f4f) - **style:** add missing spaces around parentheses _(by Philipp Burckhardt)_ - [`d7bf560`](https://github.com/stdlib-js/stdlib/commit/d7bf560813d0f6cd44418dad0e8e84dd3f0a1596) - **docs:** improve examples of `stats/base/dists/gumbel` _(by olenkabilonizhka, Philipp Burckhardt)_ - [`9e689ff`](https://github.com/stdlib-js/stdlib/commit/9e689ffcb7c6223afc521f1e574b42f10921cf5e) - **chore:** fix indentation in manifest.json files _(by Philipp Burckhardt)_ - [`6e9f42e`](https://github.com/stdlib-js/stdlib/commit/6e9f42e4c912485d9896eaa16c88b70fd3688e97) - **docs:** harmonize list formatting in repl.txt and ensure starting newline _(by Philipp Burckhardt)_ diff --git a/base/dists/gumbel/README.md b/base/dists/gumbel/README.md index bcc7bc5f..3e22db43 100644 --- a/base/dists/gumbel/README.md +++ b/base/dists/gumbel/README.md @@ -110,7 +110,7 @@ var y = dist.pdf( 2.0 ); ```javascript var Float64Array = require( '@stdlib/array/float64' ); -var filledarrayBy = require('@stdlib/array/filled-by'); +var filledarrayBy = require( '@stdlib/array/filled-by' ); var mean = require( '@stdlib/stats/base/mean' ); var variance = require( '@stdlib/stats/base/variance' ); var stdev = require( '@stdlib/stats/base/stdev' ); diff --git a/base/dists/gumbel/examples/index.js b/base/dists/gumbel/examples/index.js index 69cabbf8..4d18c6d2 100644 --- a/base/dists/gumbel/examples/index.js +++ b/base/dists/gumbel/examples/index.js @@ -19,7 +19,7 @@ 'use strict'; var Float64Array = require( '@stdlib/array/float64' ); -var filledarrayBy = require('@stdlib/array/filled-by'); +var filledarrayBy = require( '@stdlib/array/filled-by' ); var mean = require( './../../../../base/mean' ); var variance = require( './../../../../base/variance' ); var stdev = require( './../../../../base/stdev' );