diff options
author | bptato <nincsnevem662@gmail.com> | 2023-12-28 21:19:21 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2023-12-28 21:23:26 +0100 |
commit | d91d1dda2ad1219b3b798eafc14151811ed9a1b3 (patch) | |
tree | f82d8da0763f0dbc62dedb2aa9aaa51114d2aad9 /src/io | |
parent | b035e53d641d71fab89f92cd8d5188501be0d058 (diff) | |
download | chawan-d91d1dda2ad1219b3b798eafc14151811ed9a1b3.tar.gz |
Compile with styleCheck:usages
much better
Diffstat (limited to 'src/io')
-rw-r--r-- | src/io/serialize.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/io/serialize.nim b/src/io/serialize.nim index 1a7d0f62..4a1a810b 100644 --- a/src/io/serialize.nim +++ b/src/io/serialize.nim @@ -32,9 +32,9 @@ proc swrite*(stream: Stream, b: bool) proc sread*(stream: Stream, b: var bool) func slen*(b: bool): int -proc swrite*(stream: Stream, url: Url) -proc sread*(stream: Stream, url: var Url) -func slen*(url: Url): int +proc swrite*(stream: Stream, url: URL) +proc sread*(stream: Stream, url: var URL) +func slen*(url: URL): int proc swrite*(stream: Stream, tup: tuple) proc sread*(stream: Stream, tup: var tuple) |