diff options
author | Nindaleth <Nindaleth@users.noreply.github.com> | 2019-10-30 09:08:45 +0100 |
---|---|---|
committer | Miran <narimiran@disroot.org> | 2019-10-30 09:08:45 +0100 |
commit | 34dbc5699e8cb36e26bad5a57edc972b82f26c5f (patch) | |
tree | de04803327f19ef69b46ca46b4e16a09f77fa6d1 /lib/posix | |
parent | 1214960a1bde9b45c76caaff0cdea7d2d753b205 (diff) | |
download | Nim-34dbc5699e8cb36e26bad5a57edc972b82f26c5f.tar.gz |
fix several typos in documentation and comments (#12553)
Diffstat (limited to 'lib/posix')
-rw-r--r-- | lib/posix/posix_macos_amd64.nim | 2 | ||||
-rw-r--r-- | lib/posix/posix_other.nim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/posix/posix_macos_amd64.nim b/lib/posix/posix_macos_amd64.nim index 41522fd17..0687267f0 100644 --- a/lib/posix/posix_macos_amd64.nim +++ b/lib/posix/posix_macos_amd64.nim @@ -562,7 +562,7 @@ when defined(macosx): var SO_NOSIGPIPE* {.importc, header: "<sys/socket.h>".}: cint elif defined(solaris): - # Solaris dont have MSG_NOSIGNAL + # Solaris doesn't have MSG_NOSIGNAL const MSG_NOSIGNAL* = 0'i32 else: diff --git a/lib/posix/posix_other.nim b/lib/posix/posix_other.nim index c582240d1..e42092513 100644 --- a/lib/posix/posix_other.nim +++ b/lib/posix/posix_other.nim @@ -572,7 +572,7 @@ when defined(macosx): var SO_NOSIGPIPE* {.importc, header: "<sys/socket.h>".}: cint elif defined(solaris): - # Solaris dont have MSG_NOSIGNAL + # Solaris doesn't have MSG_NOSIGNAL const MSG_NOSIGNAL* = 0'i32 else: |