hare

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

commit 35c2a022c6277ac004c046b7d3a703918e4ca3ed
parent adb4b0e0dc5d648bfb29f3a77867ec31c752b49c
Author: Sebastian <sebastian@sebsite.pw>
Date:   Fri, 11 Mar 2022 18:35:02 -0500

ip: style fix

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

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

diff --git a/net/ip/ip.ha b/net/ip/ip.ha @@ -365,7 +365,7 @@ fn wanttoken(tok: *strings::tokenizer) (str | invalid) = { export fn subnet_contains(sub: subnet, item: (addr | subnet)) bool = { let a: subnet = match (item) { case let a: addr => - yield subnet{ + yield subnet { addr = a, mask = sub.mask, };