mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-04 14:48:47 +00:00
Merge pull request #2774 from Pix-xiP/master
Updating to be the correct function name in documentation.
This commit is contained in:
@@ -159,7 +159,7 @@ writer_write_rune :: proc(b: ^Writer, r: rune) -> (size: int, err: io.Error) {
|
|||||||
return
|
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
|
// It returns the number of bytes written
|
||||||
// If n < len(p), it will return an error explaining why the write is short
|
// 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) {
|
writer_write_string :: proc(b: ^Writer, s: string) -> (int, io.Error) {
|
||||||
|
|||||||
Reference in New Issue
Block a user