1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

fix csv/writer.v

This commit is contained in:
Alexander Medvednikov 2019-12-13 20:45:48 +03:00
parent c72bf0e1b1
commit 83b8d642b4

View File

@ -8,8 +8,7 @@ import strings
struct Writer {
sb strings.Builder
pub:
mut:
pub mut:
use_crlf bool
delimiter byte
}