summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authoreqperes <eqperes@gmail.com>2018-10-11 12:15:15 +0200
committerAndreas Rumpf <rumpf_a@web.de>2018-10-11 12:15:15 +0200
commit00c4aba82839eed01e915e243935d874138ebb95 (patch)
tree08da7ffa8d94d837e9caf9b2bc055c4bb45fd4d8 /lib
parent027a11d7c85ffc990dc5b41f1c1e2b799e77ba36 (diff)
downloadNim-00c4aba82839eed01e915e243935d874138ebb95.tar.gz
compile date and compile time tz written in doc (#9283)
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 c9d56de0d..dff149249 100644
--- a/lib/system.nim
+++ b/lib/system.nim
@@ -1420,11 +1420,11 @@ const
     ## compiler magic. It is useful to embed testing code in a module.
 
   CompileDate* {.magic: "CompileDate"}: string = "0000-00-00"
-    ## is the date of compilation as a string of the form
+    ## is the date (in UTC) of compilation as a string of the form
     ## ``YYYY-MM-DD``. This works thanks to compiler magic.
 
   CompileTime* {.magic: "CompileTime"}: string = "00:00:00"
-    ## is the time of compilation as a string of the form
+    ## is the time (in UTC) of compilation as a string of the form
     ## ``HH:MM:SS``. This works thanks to compiler magic.
 
   cpuEndian* {.magic: "CpuEndian"}: Endianness = littleEndian