diff options
author | flywind <xzsflywind@gmail.com> | 2021-02-20 05:20:29 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-20 03:20:29 -0800 |
commit | a1a18cfe66c94a634525f28775f170ad01c84344 (patch) | |
tree | d42e94e37b4e582b7ed316b81abcc7165c569cd3 /lib/posix/posix_haiku.nim | |
parent | 1efaef52a2f916441d153917486ef8a4218a6111 (diff) | |
download | Nim-a1a18cfe66c94a634525f28775f170ad01c84344.tar.gz |
use single backtick (#17115)
Diffstat (limited to 'lib/posix/posix_haiku.nim')
-rw-r--r-- | lib/posix/posix_haiku.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/posix/posix_haiku.nim b/lib/posix/posix_haiku.nim index eaf2cfb85..d626b2106 100644 --- a/lib/posix/posix_haiku.nim +++ b/lib/posix/posix_haiku.nim @@ -58,7 +58,7 @@ type d_type*: int8 ## Type of file; not supported by all filesystem types. ## (not POSIX) when defined(linux) or defined(openbsd): - d_off*: Off ## Not an offset. Value that ``telldir()`` would return. + d_off*: Off ## Not an offset. Value that `telldir()` would return. elif defined(haiku): d_pino*: Ino ## Parent inode (only for queries) (not POSIX) d_reclen*: cushort ## Length of this record. (not POSIX) @@ -551,7 +551,7 @@ else: var SO_REUSEPORT* {.importc, header: "<sys/socket.h>".}: cint when defined(macosx): - # We can't use the NOSIGNAL flag in the ``send`` function, it has no effect + # We can't use the NOSIGNAL flag in the `send` function, it has no effect # Instead we should use SO_NOSIGPIPE in setsockopt const MSG_NOSIGNAL* = 0'i32 |