summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authornarimiran <narimiran@disroot.org>2020-07-07 22:57:06 +0200
committernarimiran <narimiran@disroot.org>2020-07-07 22:57:06 +0200
commite82a14b2735e58a4230d79820465753e2592cd2b (patch)
treedecc194ddfa0793c8ea87c289e2c450359d1b1e9 /lib
parent8480bef1c4f289228808a9b7525f6052c0ca7152 (diff)
downloadNim-e82a14b2735e58a4230d79820465753e2592cd2b.tar.gz
fix mistake in times.nim docs
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 16d7ff31d..fb2f5e430 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