From 09a52b7ee662f364ecd0ee00d2379de612d86bc7 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sat, 5 Dec 2020 16:56:09 +0000 Subject: [PATCH] Fix typos --- core/io/multi.odin | 4 ++-- 1 file 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;