From e796a16e4805b1bb164444f90446bd49bdadbd56 Mon Sep 17 00:00:00 2001 From: Akuli Date: Tue, 7 Feb 2023 20:43:47 +0200 Subject: [PATCH] Fix typo --- stdlib/io.jou | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/io.jou b/stdlib/io.jou index 35e580ab..5a13461f 100644 --- a/stdlib/io.jou +++ b/stdlib/io.jou @@ -65,7 +65,7 @@ declare fscanf(file: FILE*, pattern: byte*, ...) -> int # or when the resulting string (including the '\0') wouldn't fit # within n bytes. # -# Return value: NULL on error, same as s on success. +# Return value: NULL on error, same as destination on success. declare fgets(destination: byte*, n: int, file: FILE*) -> byte* # Move back to beginning of file.