diff options
author | flywind <xzsflywind@gmail.com> | 2021-02-21 21:53:28 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-21 19:53:28 -0800 |
commit | 455690157250e9108819a3cb32a574da48d0f9c9 (patch) | |
tree | 9f4300fb63fefea8818122d43b7cbf4ed57e8ee7 /lib/std/time_t.nim | |
parent | 4f10dde64a504d982ef0e1d46e42f506a9a88a1b (diff) | |
download | Nim-455690157250e9108819a3cb32a574da48d0f9c9.tar.gz |
use single backtick (#17141)
Diffstat (limited to 'lib/std/time_t.nim')
-rw-r--r-- | lib/std/time_t.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/time_t.nim b/lib/std/time_t.nim index 5fd2752c7..7fb6e6d46 100644 --- a/lib/std/time_t.nim +++ b/lib/std/time_t.nim @@ -11,7 +11,7 @@ when defined(nimdoc): type Impl = distinct int64 Time* = Impl ## \ - ## Wrapper for ``time_t``. On posix, this is an alias to ``posix.Time``. + ## Wrapper for `time_t`. On posix, this is an alias to `posix.Time`. elif defined(windows): when defined(i386) and defined(gcc): type Time* {.importc: "time_t", header: "<time.h>".} = distinct int32 |