diff options
author | Federico Ceratto <federico.ceratto@gmail.com> | 2016-10-17 13:07:14 +0100 |
---|---|---|
committer | Federico Ceratto <federico.ceratto@gmail.com> | 2016-10-17 13:12:15 +0100 |
commit | 7d24656b0a24515aeb9984cdfb363b0f40fa2256 (patch) | |
tree | 8738c3a3410ee1d1cbd3f0bc670708b83e4b85f0 /lib/posix | |
parent | f176128f0728052b10a9c7ddc6e77fdfe8ece088 (diff) | |
download | Nim-7d24656b0a24515aeb9984cdfb363b0f40fa2256.tar.gz |
Fix few typos
Diffstat (limited to 'lib/posix')
-rw-r--r-- | lib/posix/kqueue.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/posix/kqueue.nim b/lib/posix/kqueue.nim index 5c67d621e..19d661490 100644 --- a/lib/posix/kqueue.nim +++ b/lib/posix/kqueue.nim @@ -123,7 +123,7 @@ when defined(macosx) or defined(freebsd): NOTE_USECONDS* = 0x00000004'u32 ## data is microseconds NOTE_NSECONDS* = 0x00000008'u32 ## data is nanoseconds else: - # NetBSD and OpenBSD doesnt support NOTE_{TIME} constants, but + # NetBSD and OpenBSD doesn't support NOTE_{TIME} constants, but # support EVFILT_TIMER with granularity of milliseconds. const NOTE_MSECONDS* = 0x00000000'u32 |