summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2019-09-08 09:19:57 +0200
committerAraq <rumpf_a@web.de>2019-09-08 13:08:41 +0200
commit4bbafb47dc87f3742ecb2059d7dac9b2d06fcc11 (patch)
treee85d37bcd7033adae2af5c57d6a51343ce8f228e
parent5a8fddf29b1abfcb55db07e693cb25434336face (diff)
downloadNim-4bbafb47dc87f3742ecb2059d7dac9b2d06fcc11.tar.gz
streams.nim: indentation change
-rw-r--r--lib/pure/streams.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/streams.nim b/lib/pure/streams.nim
index 28d9d7612..448c6121a 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.}