diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2020-05-31 14:57:16 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-31 14:57:16 -0700 |
commit | 004b0759c5743f4b50766a14b0a47477b72bbac9 (patch) | |
tree | e3d6a2b979da028ce3e14894e93ac8b59a9f211c /lib | |
parent | 5150186c68af1fbcc1185d815f52024c4647fe0b (diff) | |
download | Nim-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.nim | 4 |
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): |