hare

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

commit 2b407991171c2a6f46e26c3278852f87599f6a43
parent 2476403d74e1cfa2e0a38c1a1496fcb673a94a9d
Author: Sebastian <sebastian@sebsite.pw>
Date:   Sat,  4 Feb 2023 00:50:49 -0500

strconv: fix doc comment

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

Diffstat:
Mstrconv/utos.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/strconv/utos.ha b/strconv/utos.ha @@ -65,7 +65,7 @@ export fn utosb(u: uint, b: base) const str = u64tosb(u, b); // [[strings::dup]] to duplicate the result. export fn ztosb(u: size, b: base) const str = u64tosb(u, b); -// Converts a size to a string in the given base. The return value is +// Converts a uintptr to a string in the given base. The return value is // statically allocated and will be overwritten on subsequent calls; see // [[strings::dup]] to duplicate the result. export fn uptrtosb(uptr: uintptr, b: base) const str = u64tosb(uptr: u64, b);