hare

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

commit 287b3ec7078a7f2fcd3465a8cac382554a256450
parent dc6155ada2d7e34358fa350a18ffcbdd6da78c82
Author: Sebastian <sebastian@sebsite.pw>
Date:   Fri,  6 May 2022 22:50:05 -0400

log: add period in doc comment

This is a very minor nit but it was really bothering me. This same
comment is used elsewhere within the log module, but it ends with a
period in all places but here.

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

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

diff --git a/log/funcs.ha b/log/funcs.ha @@ -11,7 +11,7 @@ export fn lprintfln(log: *logger, fmt: str, fields: fmt::field...) void = { log.printfln(log, fmt, fields...); }; -// Prints data to the global log, with a newline +// Prints data to the global log, with a newline. export fn println(fields: fmt::formattable...) void = { lprintln(global, fields...); };