hare

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

commit d41710edea3e02878d9410fa3ed4282e7cce963e
parent 88acbd57f7536eb7973e278bec8a4b55d0d029bb
Author: Christy X. Winslett <winslett.christian@gmail.com>
Date:   Thu,  4 May 2023 13:33:34 -0500

types::RUNE_MIN: correct documentation comment

Signed-off-by: Christy X. Winslett <winslett.christian@gmail.com>

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

diff --git a/types/limits.ha b/types/limits.ha @@ -51,7 +51,7 @@ export def U64_MIN: u64 = 0; // Maximum value which can be stored in a u64 type. export def U64_MAX: u64 = 18446744073709551615; -// Maximum value which can be stored in a rune. +// Minimum value which can be stored in a rune. export def RUNE_MIN: rune = U32_MIN: rune; // Maximum value which can be stored in a rune.