summary refs log tree commit diff stats
path: root/lib/posix/epoll.nim
diff options
context:
space:
mode:
authorflywind <xzsflywind@gmail.com>2021-02-20 05:20:29 -0600
committerGitHub <noreply@github.com>2021-02-20 03:20:29 -0800
commita1a18cfe66c94a634525f28775f170ad01c84344 (patch)
treed42e94e37b4e582b7ed316b81abcc7165c569cd3 /lib/posix/epoll.nim
parent1efaef52a2f916441d153917486ef8a4218a6111 (diff)
downloadNim-a1a18cfe66c94a634525f28775f170ad01c84344.tar.gz
use single backtick (#17115)
Diffstat (limited to 'lib/posix/epoll.nim')
-rw-r--r--lib/posix/epoll.nim6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/posix/epoll.nim b/lib/posix/epoll.nim
index 9f0cf75ed..1f105ecac 100644
--- a/lib/posix/epoll.nim
+++ b/lib/posix/epoll.nim
@@ -57,10 +57,10 @@ proc epoll_create1*(flags: cint): cint {.importc: "epoll_create1",
 
 proc epoll_ctl*(epfd: cint; op: cint; fd: cint | SocketHandle; event: ptr EpollEvent): cint {.
     importc: "epoll_ctl", header: "<sys/epoll.h>".}
-  ## Manipulate an epoll instance "epfd". Returns ``0`` in case of success,
-  ## ``-1`` in case of error (the "errno" variable will contain the specific error code).
+  ## Manipulate an epoll instance "epfd". Returns `0` in case of success,
+  ## `-1` in case of error (the "errno" variable will contain the specific error code).
   ## 
-  ## The "op" parameter is one of the ``EPOLL_CTL_*``
+  ## The "op" parameter is one of the `EPOLL_CTL_*`
   ## constants defined above. The "fd" parameter is the target of the
   ## operation. The "event" parameter describes which events the caller
   ## is interested in and any associated user data.