summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorTimothee Cour <timothee.cour2@gmail.com>2020-05-29 05:30:36 -0700
committerGitHub <noreply@github.com>2020-05-29 05:30:36 -0700
commite646c16e06e95855a92c1d2453f6f927555aed7e (patch)
treec4fee1a08ee3fa71be8f803ab2ecf96892a03a84 /lib
parente31ac81899767e4cebb706ed473dae7ff6f0afd7 (diff)
downloadNim-e646c16e06e95855a92c1d2453f6f927555aed7e.tar.gz
hotfix doc comments for procs without body (#14494)
Diffstat (limited to 'lib')
-rw-r--r--lib/system/io.nim5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/system/io.nim b/lib/system/io.nim
index 84bebba28..b1f6bb61b 100644
--- a/lib/system/io.nim
+++ b/lib/system/io.nim
@@ -501,11 +501,6 @@ proc readAll*(file: File): TaintedString {.tags: [ReadIOEffect], benign.} =
   else:
     result = readAllBuffer(file).TaintedString
 
-proc writeLn[Ty](f: File, x: varargs[Ty, `$`]) =
-  for i in items(x):
-    write(f, i)
-  write(f, "\n")
-
 proc writeLine*[Ty](f: File, x: varargs[Ty, `$`]) {.inline,
                           tags: [WriteIOEffect], benign.} =
   ## writes the values `x` to `f` and then writes "\\n".