summary refs log tree commit diff stats
diff options
context:
space:
mode:
-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.