From 95ec32d12417fb58d1116dc443a3c9d5fc2f79a4 Mon Sep 17 00:00:00 2001 From: Simon Krauter Date: Wed, 1 Nov 2017 17:06:17 +0100 Subject: [PATCH] Extend description of fmWrite Add "Existing files will be cleared!" like in fmReadWriteExisting. Behavior tested under Linux. --- lib/system.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/system.nim b/lib/system.nim index 710bf312fe..92c5e009f9 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -2835,7 +2835,7 @@ when not defined(JS): #and not defined(nimscript): fmRead, ## Open the file for read access only. fmWrite, ## Open the file for write access only. ## If the file does not exist, it will be - ## created. + ## created. Existing files will be cleared! fmReadWrite, ## Open the file for read and write access. ## If the file does not exist, it will be ## created. Existing files will be cleared!