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

csv: minor cleanup in writer.v (#15633)

This commit is contained in:
yuyi 2022-09-02 02:23:18 +08:00 committed by GitHub
parent 728b198384
commit bfdd6f1cf8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,7 +14,7 @@ mut:
[params]
pub struct WriterConfig {
use_crlf bool = false
use_crlf bool
delimiter u8 = `,`
}