From 9bc79b923ce1942fec7fdcf7e384f5a43fc48e1b Mon Sep 17 00:00:00 2001 From: Vladislav Date: Tue, 1 Nov 2016 22:33:09 +0200 Subject: [PATCH] added description to fmWrite mode to be more exact --- lib/system.nim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/system.nim b/lib/system.nim index d938e59bc3..9547673a57 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -2629,6 +2629,8 @@ when not defined(JS): #and not defined(nimscript): FileMode* = enum ## The file mode when opening a file. 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. fmReadWrite, ## Open the file for read and write access. ## If the file does not exist, it will be ## created.