summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2017-01-14 16:21:05 +0100
committerGitHub <noreply@github.com>2017-01-14 16:21:05 +0100
commit723a5a09f449be5ebf752c98c161b3da70c0ab93 (patch)
tree62c54986e3d8a6d489b406f1a00cc6cd89c36c02 /lib
parent823fbd4e40fa19aca1eab1a425f668463d654f3c (diff)
downloadNim-723a5a09f449be5ebf752c98c161b3da70c0ab93.tar.gz
Update system.nim
Diffstat (limited to 'lib')
-rw-r--r--lib/system.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/system.nim b/lib/system.nim
index 35d7a0b26..bb671c242 100644
--- a/lib/system.nim
+++ b/lib/system.nim
@@ -2666,10 +2666,10 @@ when not defined(JS): #and not defined(nimscript):
                                 ## created.
       fmReadWrite,              ## Open the file for read and write access.
                                 ## If the file does not exist, it will be
-                                ## created.
+                                ## created. Existing files will be cleared!
       fmReadWriteExisting,      ## Open the file for read and write access.
                                 ## If the file does not exist, it will not be
-                                ## created.
+                                ## created. The existing file will not be cleared.
       fmAppend                  ## Open the file for writing only; append data
                                 ## at the end.