diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-13 00:06:41 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-13 00:06:41 +0800 |
commit | ff9dac7881a37035aefe68cda0e2f7259023969c (patch) | |
tree | 63e362d0fc0dfd0dbd8e5fc6522e482ed93b739f | |
parent | Add a basic HTTP server (diff) | |
download | forge-ff9dac7881a37035aefe68cda0e2f7259023969c.tar.gz forge-ff9dac7881a37035aefe68cda0e2f7259023969c.tar.zst forge-ff9dac7881a37035aefe68cda0e2f7259023969c.zip |
Fix inconsistent capitalization in the error messagehare
-rw-r--r-- | main.ha | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -36,7 +36,7 @@ export fn main() void = { ip_addr = ip::parsev4(value.0)!; port = value.1; case dial::invalid_address => - abort("Invalid address"); + abort("invalid address"); }; case => abort(); // unreachable }; |