ed

[hare] The standard editor
Log | Files | Refs | README | LICENSE

commit ab50cec3ff7bf1cf13f3a28deaf12ede76a6a4d0
parent debc52be43ee6c77c9c3448d5939a3990ff9b32e
Author: Byron Torres <b@torresjrjr.com>
Date:   Sun,  7 Jan 2024 20:12:52 +0000

tidy interaction.ha

Diffstat:
Minteraction.ha | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/interaction.ha b/interaction.ha @@ -19,8 +19,8 @@ type UnexpectedEOF = !io::EOF; fn scanline(s: *Session) (str | InteractionError) = { match (bufio::scan_line(s.input)?) { - case let string: const str => - return string; + case let s: const str => + return s; case io::EOF => return UnexpectedEOF; };