hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit f0dc4938ebc37ed095aa36a889bfbf298dc21fb0
parent 268bfa06b79ae4747c85ac357b2490b381e5c243
Author: Sebastian <sebastian@sebsite.pw>
Date:   Tue, 23 Jan 2024 15:57:45 -0500

encoding::utf8: minor README fix

Runes aren't UTF-8-encoded. Strings are always UTF-8-encoded, so
explicitly noting it is redundant.

Signed-off-by: Sebastian <sebastian@sebsite.pw>

Diffstat:
Mencoding/utf8/README | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/encoding/utf8/README b/encoding/utf8/README @@ -1,2 +1,2 @@ -encoding::utf8 provides helper functions for working with UTF-8-encoded runes, -strings, and slices. +encoding::utf8 provides helper functions for working with runes, strings, and +UTF-8-encoded slices.