hare

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

commit 02309bcf4e0988908e2fbca9b1c8ea36532e5a9c
parent 6275c4fb84bbecddfe7098efed4843925dc3d48f
Author: Drew DeVault <sir@cmpwn.com>
Date:   Mon, 19 Apr 2021 18:46:27 -0400

haredoc: fix overzealous sed errors

Diffstat:
Mcmd/haredoc/hare.ha | 2+-
Mcmd/haredoc/html.ha | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/cmd/haredoc/hare.ha b/cmd/haredoc/hare.ha @@ -36,7 +36,7 @@ fn details_hare(decl: ast::decl) (void | error) = { return; }; -// Forked from [[[hare::unparse]]] +// Forked from [[hare::unparse]] fn unparse_hare(out: *io::stream, d: ast::decl) (size | io::error) = { let n = 0z; match (d.decl) { diff --git a/cmd/haredoc/html.ha b/cmd/haredoc/html.ha @@ -136,7 +136,7 @@ fn details(decl: ast::decl) (void | error) = { return; }; -// Forked from [[[hare::unparse]]] +// Forked from [[hare::unparse]] fn unparse_html(out: *io::stream, d: ast::decl) (size | io::error) = { // TODO: Syntax highlighting let n = 0z;