From 8c4bd762805af570d1dc29ef2c6480084b4da6e1 Mon Sep 17 00:00:00 2001 From: Pix Date: Sun, 27 Aug 2023 21:03:49 +0800 Subject: [PATCH] Updating to be the correct function name in documentation. --- core/bufio/writer.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/bufio/writer.odin b/core/bufio/writer.odin index bfa8b804f..c3debdaaa 100644 --- a/core/bufio/writer.odin +++ b/core/bufio/writer.odin @@ -159,7 +159,7 @@ writer_write_rune :: proc(b: ^Writer, r: rune) -> (size: int, err: io.Error) { return } -// writer_write writes a string into the buffer +// writer_write_string writes a string into the buffer // It returns the number of bytes written // If n < len(p), it will return an error explaining why the write is short writer_write_string :: proc(b: ^Writer, s: string) -> (int, io.Error) {