diff --git a/CHANGELOG.md b/CHANGELOG.md index b682bec8..9cedea3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@
-## Unreleased (2024-09-17) +## Unreleased (2024-09-21)
@@ -145,6 +145,7 @@ A total of 3 people contributed to this release. Thank you to the following cont
+- [`6e9f42e`](https://github.com/stdlib-js/stdlib/commit/6e9f42e4c912485d9896eaa16c88b70fd3688e97) - **docs:** harmonize list formatting in repl.txt and ensure starting newline _(by Philipp Burckhardt)_ - [`f387603`](https://github.com/stdlib-js/stdlib/commit/f387603e739f88a38af3263ce6ff675ad903ee8c) - **docs:** consistently use declarative instead of imperative sentences outside of intros _(by Philipp Burckhardt)_ - [`95ef049`](https://github.com/stdlib-js/stdlib/commit/95ef04997f2f0f98406dbdf59c5c0ff757c5637a) - **docs:** fix grammar _(by Athan Reines)_ - [`037a7a8`](https://github.com/stdlib-js/stdlib/commit/037a7a81819bbbf2c0d784678b42d423f47d62ce) - **refactor:** use `const` qualifier and update examples _(by Athan Reines)_ diff --git a/base/ind/docs/repl.txt b/base/ind/docs/repl.txt index 1038bb24..6927dad5 100644 --- a/base/ind/docs/repl.txt +++ b/base/ind/docs/repl.txt @@ -51,8 +51,8 @@ The function returns a function which accepts the following arguments: - - idx: index - - max: maximum index value + - idx: index. + - max: maximum index value. Parameters ---------- diff --git a/base/serialize-meta-data/docs/repl.txt b/base/serialize-meta-data/docs/repl.txt index 898766a6..31f573a6 100644 --- a/base/serialize-meta-data/docs/repl.txt +++ b/base/serialize-meta-data/docs/repl.txt @@ -8,17 +8,17 @@ where - - endianness: byte order (1 byte) - - dt: data type (2 bytes) - - ndims: number of dimensions (8 bytes) - - shape: shape (ndims*8 bytes) - - strides: strides in units of bytes (ndims*8 bytes) - - offset: index offset in units of bytes (8 bytes) - - ord: array order (1 byte) - - mode: index mode (1 byte) - - nsubmodes: number of subscript index modes (8 bytes) - - submodes: subscript index modes (nsubmodes*1 bytes) - - flags: flags (4 bytes) + - endianness: byte order (1 byte). + - dt: data type (2 bytes). + - ndims: number of dimensions (8 bytes). + - shape: shape (ndims*8 bytes). + - strides: strides in units of bytes (ndims*8 bytes). + - offset: index offset in units of bytes (8 bytes). + - ord: array order (1 byte). + - mode: index mode (1 byte). + - nsubmodes: number of subscript index modes (8 bytes). + - submodes: subscript index modes (nsubmodes*1 bytes). + - flags: flags (4 bytes). Serialization is performed according to host byte order (endianness).