From d5b9f7d026d358eacb17df2eccee95456b52ecf2 Mon Sep 17 00:00:00 2001 From: Keito Tobichi Date: Tue, 3 Jan 2023 03:20:52 +0900 Subject: [PATCH] io: fix typos (fix #16839) (#16840) --- vlib/io/writer.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vlib/io/writer.v b/vlib/io/writer.v index 077f5bfda3..be0d93f71c 100644 --- a/vlib/io/writer.v +++ b/vlib/io/writer.v @@ -1,12 +1,12 @@ module io -// Writer represents a stream of data that can be wrote to +// Writer represents a stream of data that can be written to pub interface Writer { mut: write(buf []u8) !int } -// RandomWriter represents a stream of data that can be wrote to +// RandomWriter represents a stream of data that can be written to // at a random pos pub interface RandomWriter { write_to(pos u64, buf []u8) !int