hare

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

commit c612798b9b0eb8cd5f2afb18b7ca3665ec3a6978
parent b6177c86d9fb69f58a7c953ba8bbc1c150fc45e4
Author: Sebastian <sebastian@sebsite.pw>
Date:   Tue, 26 Nov 2024 20:30:38 -0500

types::c: fix header in wint docs

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

diff --git a/types/c/types.ha b/types/c/types.ha @@ -247,7 +247,7 @@ export def WCHAR_MIN: wchar = types::I32_MIN; // Maximum value which can be stored in a [[wchar]] type. export def WCHAR_MAX: wchar = types::I32_MAX; -// Integer type compatible with `wint_t`, as defined in <stdint.h> and specified +// Integer type compatible with `wint_t`, as defined in <wchar.h> and specified // by ISO/IEC 9899:1994. export type wint = u32;