summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorDominik Picheta <dominikpicheta@gmail.com>2020-07-07 19:18:02 +0100
committerDominik Picheta <dominikpicheta@gmail.com>2020-07-07 19:18:02 +0100
commit25ceacbe4f548588f13e9420c0b7165da40282c6 (patch)
tree3ccd998d20a4dafda383af29b9a77a535b4a90d8 /lib
parenta61a7889b8ffe3b5a31b025272b5fd27d69484f5 (diff)
downloadNim-25ceacbe4f548588f13e9420c0b7165da40282c6.tar.gz
Revert commit 3e843ab3358. Closes #14930.
Diffstat (limited to 'lib')
-rw-r--r--lib/pure/times.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/times.nim b/lib/pure/times.nim
index fb2f5e430..16d7ff31d 100644
--- a/lib/pure/times.nim
+++ b/lib/pure/times.nim
@@ -1408,7 +1408,7 @@ proc getDateStr*(dt = now()): string {.rtl, extern: "nt$1", tags: [TimeEffect].}
     '-' & intToStr(dt.monthday, 2)
 
 proc getClockStr*(dt = now()): string {.rtl, extern: "nt$1", tags: [TimeEffect].} =
-  ## Gets the current local clock time as a string of the format ``HH:mm:ss``.
+  ## Gets the current local clock time as a string of the format ``HH:MM:SS``.
   runnableExamples:
     echo getClockStr(now() - 1.hours)
   assertDateTimeInitialized dt