hare

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

commit eb7c0e0ba9e9a646890ef6c2d3285e214d338dff
parent 856ec3b5c57e20e552c5f638f2da1b449c0c0485
Author: Mohammed Anas <triallax@tutanota.com>
Date:   Fri, 20 Oct 2023 21:53:36 +0100

strconv: correct `ztos` doc comment

Signed-off-by: Mohammed Anas <triallax@tutanota.com>

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

diff --git a/strconv/utos.ha b/strconv/utos.ha @@ -98,7 +98,7 @@ export fn utos(u: uint) const str = u64tos(u); // Converts a size to a string in base 10. The return value is statically // allocated and will be overwritten on subsequent calls; see [[strings::dup]] to -// duplicate the result, or [[itosb]] to pass your own string buffer. +// duplicate the result. export fn ztos(z: size) const str = u64tos(z); // Converts a uintptr to a string in base 10. The return value is statically