aboutsummaryrefslogtreecommitdiff
path: root/core/io
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2020-12-05 16:56:09 +0000
committergingerBill <bill@gingerbill.org>2020-12-05 16:56:09 +0000
commit09a52b7ee662f364ecd0ee00d2379de612d86bc7 (patch)
tree0fe0c785002889974c8683348423a8d153c4d0cc /core/io
parent7b36174c17b11674d6bd76c21b626c464a20cb05 (diff)
Fix typos
Diffstat (limited to 'core/io')
-rw-r--r--core/io/multi.odin4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/io/multi.odin b/core/io/multi.odin
index fa26b0052..990cda61d 100644
--- a/core/io/multi.odin
+++ b/core/io/multi.odin
@@ -36,7 +36,7 @@ _multi_reader_vtable := &Stream_VTable{
},
};
-mutlti_reader :: proc(readers: ..Reader, allocator := context.allocator) -> (r: Reader) {
+multi_reader :: proc(readers: ..Reader, allocator := context.allocator) -> (r: Reader) {
context.allocator = allocator;
mr := new(Multi_Reader);
all_readers := make([dynamic]Reader, 0, len(readers));
@@ -90,7 +90,7 @@ _multi_writer_vtable := &Stream_VTable{
},
};
-mutlti_writer :: proc(writers: ..Writer, allocator := context.allocator) -> (out: Writer) {
+multi_writer :: proc(writers: ..Writer, allocator := context.allocator) -> (out: Writer) {
context.allocator = allocator;
mw := new(Multi_Writer);
mw.allocator = allocator;