From eb5c461b3ac44f3262f8db2e2f0722c23a56c170 Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Sat, 21 Sep 2024 21:38:56 +0000 Subject: [PATCH] Auto-generated commit --- CHANGELOG.md | 6 ++++-- base/for-each-code-point-right/docs/repl.txt | 6 +++--- base/for-each-code-point/docs/repl.txt | 6 +++--- base/for-each-grapheme-cluster/docs/repl.txt | 6 +++--- base/for-each-right/docs/repl.txt | 8 ++++---- base/for-each/docs/repl.txt | 6 +++--- for-each/docs/repl.txt | 6 +++--- to-grapheme-cluster-iterator-right/docs/repl.txt | 6 +++--- to-grapheme-cluster-iterator/docs/repl.txt | 6 +++--- 9 files changed, 29 insertions(+), 27 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f3373a52..6530a147 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@
-## Unreleased (2024-09-19) +## Unreleased (2024-09-21)
@@ -85,9 +85,10 @@ ### Contributors -A total of 1 person contributed to this release. Thank you to this contributor: +A total of 2 people contributed to this release. Thank you to the following contributors: - Athan Reines +- Philipp Burckhardt
@@ -99,6 +100,7 @@ A total of 1 person contributed to this release. Thank you to this contributor:
+- [`6e9f42e`](https://github.com/stdlib-js/stdlib/commit/6e9f42e4c912485d9896eaa16c88b70fd3688e97) - **docs:** harmonize list formatting in repl.txt and ensure starting newline _(by Philipp Burckhardt)_ - [`2eded73`](https://github.com/stdlib-js/stdlib/commit/2eded73655c7d803cdbdce88d38af9bc5aab42b0) - **feat:** add `base64ToUint8Array` to namespace _(by Athan Reines)_ - [`09e7120`](https://github.com/stdlib-js/stdlib/commit/09e71201868eaa8fb1c003c4de270b4002fa900c) - **feat:** add `string/base/base64-to-uint8array` _(by Athan Reines)_ - [`f200857`](https://github.com/stdlib-js/stdlib/commit/f2008570f57d9bdaec78ec212fe91858f68cf3ac) - **chore:** fix copyright year _(by Athan Reines)_ diff --git a/base/for-each-code-point-right/docs/repl.txt b/base/for-each-code-point-right/docs/repl.txt index 68cbecdc..b53326b0 100644 --- a/base/for-each-code-point-right/docs/repl.txt +++ b/base/for-each-code-point-right/docs/repl.txt @@ -5,9 +5,9 @@ When invoked, the provided function is provided three arguments: - - value: code point - - index: starting code point index - - str: input string + - value: code point. + - index: starting code point index. + - str: input string. Parameters ---------- diff --git a/base/for-each-code-point/docs/repl.txt b/base/for-each-code-point/docs/repl.txt index 1b844b10..a5d8e28e 100644 --- a/base/for-each-code-point/docs/repl.txt +++ b/base/for-each-code-point/docs/repl.txt @@ -4,9 +4,9 @@ When invoked, the provided function is provided three arguments: - - value: code point - - index: starting code point index - - str: input string + - value: code point. + - index: starting code point index. + - str: input string. Parameters ---------- diff --git a/base/for-each-grapheme-cluster/docs/repl.txt b/base/for-each-grapheme-cluster/docs/repl.txt index a479c2b8..bd760f82 100644 --- a/base/for-each-grapheme-cluster/docs/repl.txt +++ b/base/for-each-grapheme-cluster/docs/repl.txt @@ -5,9 +5,9 @@ When invoked, the provided function is provided three arguments: - - value: grapheme cluster - - index: starting grapheme cluster index - - str: input string + - value: grapheme cluster. + - index: starting grapheme cluster index. + - str: input string. Parameters ---------- diff --git a/base/for-each-right/docs/repl.txt b/base/for-each-right/docs/repl.txt index 7e655900..758e99d4 100644 --- a/base/for-each-right/docs/repl.txt +++ b/base/for-each-right/docs/repl.txt @@ -1,13 +1,13 @@ {{alias}}( str, clbk[, thisArg] ) - Invokes a function for each UTF-16 code unit in a string, iterating from + Invokes a function for each UTF-16 code unit in a string, iterating from right to left. When invoked, the provided function is provided three arguments: - - value: character - - index: character index - - str: input string + - value: character. + - index: character index. + - str: input string. Parameters ---------- diff --git a/base/for-each/docs/repl.txt b/base/for-each/docs/repl.txt index 08792663..4340d87c 100644 --- a/base/for-each/docs/repl.txt +++ b/base/for-each/docs/repl.txt @@ -4,9 +4,9 @@ When invoked, the provided function is provided three arguments: - - value: character - - index: character index - - str: input string + - value: character. + - index: character index. + - str: input string. Parameters ---------- diff --git a/for-each/docs/repl.txt b/for-each/docs/repl.txt index 02bfcebd..83786bc9 100644 --- a/for-each/docs/repl.txt +++ b/for-each/docs/repl.txt @@ -4,9 +4,9 @@ When invoked, the provided function is provided three arguments: - - value: character - - index: starting character index - - str: input string + - value: character. + - index: starting character index. + - str: input string. Parameters ---------- diff --git a/to-grapheme-cluster-iterator-right/docs/repl.txt b/to-grapheme-cluster-iterator-right/docs/repl.txt index 4a933c8a..d153d030 100644 --- a/to-grapheme-cluster-iterator-right/docs/repl.txt +++ b/to-grapheme-cluster-iterator-right/docs/repl.txt @@ -5,9 +5,9 @@ When invoked, an input function is provided three arguments: - - value: grapheme cluster - - index: iterated value index - - src: source string + - value: grapheme cluster. + - index: iterated value index. + - src: source string. If an environment supports Symbol.iterator, the returned iterator is iterable. diff --git a/to-grapheme-cluster-iterator/docs/repl.txt b/to-grapheme-cluster-iterator/docs/repl.txt index 60e2721f..8f8ed500 100644 --- a/to-grapheme-cluster-iterator/docs/repl.txt +++ b/to-grapheme-cluster-iterator/docs/repl.txt @@ -4,9 +4,9 @@ When invoked, an input function is provided three arguments: - - value: grapheme cluster - - index: iterated value index - - src: source string + - value: grapheme cluster. + - index: iterated value index. + - src: source string. If an environment supports Symbol.iterator, the returned iterator is iterable.