summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorTimothee Cour <timothee.cour2@gmail.com>2020-05-31 14:57:16 -0700
committerGitHub <noreply@github.com>2020-05-31 14:57:16 -0700
commit004b0759c5743f4b50766a14b0a47477b72bbac9 (patch)
treee3d6a2b979da028ce3e14894e93ac8b59a9f211c /lib
parent5150186c68af1fbcc1185d815f52024c4647fe0b (diff)
downloadNim-004b0759c5743f4b50766a14b0a47477b72bbac9.tar.gz
fix CI doc windows: style error in lib/std/time_t.nim (#14523)
Diffstat (limited to 'lib')
-rw-r--r--lib/std/time_t.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/std/time_t.nim b/lib/std/time_t.nim
index 37918ee6c..5fd2752c7 100644
--- a/lib/std/time_t.nim
+++ b/lib/std/time_t.nim
@@ -9,8 +9,8 @@
 
 when defined(nimdoc):
   type
-    impl = distinct int64
-    Time* = impl ## \
+    Impl = distinct int64
+    Time* = Impl ## \
       ## Wrapper for ``time_t``. On posix, this is an alias to ``posix.Time``.
 elif defined(windows):
   when defined(i386) and defined(gcc):