hare

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

commit adb4b0e0dc5d648bfb29f3a77867ec31c752b49c
parent 902743cdafc9dd010474f7f1ee21830221220e07
Author: Sebastian <sebastian@sebsite.pw>
Date:   Fri, 11 Mar 2022 18:34:59 -0500

types: fix string data comment

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

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

diff --git a/types/classes.ha b/types/classes.ha @@ -19,7 +19,7 @@ export type numeric = (...integer | ...floating); // A type representing the internal structure of strings, useful for low-level // string manipulation. export type string = struct { - // UTF-8 encoded octets, plus a NUL terminator. + // UTF-8 encoded octets. data: nullable *[*]u8, // The length capacity, in octets of UTF-8 data, not including the NUL