hare

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

commit 3148a5358420db7d25803a23423f4b88fd858bd6
parent 7a79d0aa656d657142fca3831c2d65203f481a1a
Author: Drew DeVault <sir@cmpwn.com>
Date:   Mon, 22 Mar 2021 11:09:03 -0400

hare::lex: fix typo

Diffstat:
Mhare/lex/token.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hare/lex/token.ha b/hare/lex/token.ha @@ -4,7 +4,7 @@ use strings; // A token with no additional context, such as '+' export type btoken = enum { // Keep ordered with bmap - // Alpha shorted + // Alpha sorted ATTR_FINI, ATTR_INIT, ATTR_NORETURN,