summary refs log tree commit diff stats
path: root/lib/system.nim
diff options
context:
space:
mode:
authordef <dennis@felsin9.de>2014-07-29 19:52:41 +0200
committerdef <dennis@felsin9.de>2014-07-29 19:52:41 +0200
commit06bbd6e7d720c05550d3ee9a71691a28a84a9e79 (patch)
tree24616578268b2b4471924fd837baeaf6afe224e1 /lib/system.nim
parent651f5122e4c8c6223892db63c7933ffa371fe047 (diff)
downloadNim-06bbd6e7d720c05550d3ee9a71691a28a84a9e79.tar.gz
flush -> flushFile in doc
Diffstat (limited to 'lib/system.nim')
-rw-r--r--lib/system.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system.nim b/lib/system.nim
index 753205777..d77b4fdee 100644
--- a/lib/system.nim
+++ b/lib/system.nim
@@ -2031,7 +2031,7 @@ proc echo*[T](x: varargs[T, `$`]) {.magic: "Echo", tags: [FWriteIO], gcsafe.}
   ## Special built-in that takes a variable number of arguments. Each argument
   ## is converted to a string via ``$``, so it works for user-defined
   ## types that have an overloaded ``$`` operator.
-  ## It is roughly equivalent to ``writeln(stdout, x); flush(stdout)``, but
+  ## It is roughly equivalent to ``writeln(stdout, x); flushFile(stdout)``, but
   ## available for the JavaScript target too.
   ##
   ## Unlike other IO operations this is guaranteed to be thread-safe as