From 4bbafb47dc87f3742ecb2059d7dac9b2d06fcc11 Mon Sep 17 00:00:00 2001 From: Araq Date: Sun, 8 Sep 2019 09:19:57 +0200 Subject: [PATCH] streams.nim: indentation change --- lib/pure/streams.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pure/streams.nim b/lib/pure/streams.nim index 28d9d7612f..448c6121a5 100644 --- a/lib/pure/streams.nim +++ b/lib/pure/streams.nim @@ -127,7 +127,7 @@ type peekDataImpl*: proc (s: Stream, buffer: pointer, bufLen: int): int {.nimcall, raises: [Defect, IOError, OSError], tags: [ReadIOEffect], gcsafe.} writeDataImpl*: proc (s: Stream, buffer: pointer, bufLen: int) - {.nimcall, raises: [Defect, IOError, OSError], tags: [WriteIOEffect], gcsafe.} + {.nimcall, raises: [Defect, IOError, OSError], tags: [WriteIOEffect], gcsafe.} flushImpl*: proc (s: Stream) {.nimcall, raises: [Defect, IOError, OSError], tags: [WriteIOEffect], gcsafe.}