From 8a9680e3a2dc14ab5d71aca9e8483fcff53e30d4 Mon Sep 17 00:00:00 2001 From: eqperes Date: Thu, 11 Oct 2018 12:15:15 +0200 Subject: [PATCH] compile date and compile time tz written in doc (#9283) (cherry picked from commit 00c4aba82839eed01e915e243935d874138ebb95) --- lib/system.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/system.nim b/lib/system.nim index 94706c5259..9b387633e4 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -1414,11 +1414,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