summaryrefslogtreecommitdiffhomepage
path: root/documentation/api/modules/nixio.README.html
diff options
context:
space:
mode:
authorHannu Nyman <hannu.nyman@iki.fi>2016-03-28 21:18:36 +0300
committerHannu Nyman <hannu.nyman@iki.fi>2016-03-28 21:18:36 +0300
commit0a1f44c293231c64c3ceb352637a5c3584fba50c (patch)
tree9843e8c7aff896e7b29f2418cb1fc793bffaa015 /documentation/api/modules/nixio.README.html
parent5b79e62c0a99bab8dfb8dce8124d9fecc11da54b (diff)
parent6f7b8e3f5bc0eaea00f479d6197d5381970ecff1 (diff)
Merge pull request #689 from stweil/master
Fix some typos found by codespell
Diffstat (limited to 'documentation/api/modules/nixio.README.html')
-rw-r--r--documentation/api/modules/nixio.README.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/api/modules/nixio.README.html b/documentation/api/modules/nixio.README.html
index a8da0f36da..d8a17f78b4 100644
--- a/documentation/api/modules/nixio.README.html
+++ b/documentation/api/modules/nixio.README.html
@@ -288,7 +288,7 @@
<br />In general all functions are namend and behave like their POSIX API
counterparts - where applicable - applying the following rules:
<ul>
- <li>Functions should be named like the underlying POSIX API function ommiting
+ <li>Functions should be named like the underlying POSIX API function omitting
prefixes or suffixes - especially when placed in an object-context (
lockf -> File:lock, fsync -> File:sync, dup2 -> dup, ...)</li>
<li>If you are unclear about the behaviour of a function you should consult
@@ -296,10 +296,10 @@
<li>If the name is significantly different from the POSIX-function, the
underlying function(s) are stated in the documentation.</li>
<li>Parameters should reflect those of the C-API, buffer length arguments and
- by-reference parameters should be ommitted for pratical purposes.</li>
+ by-reference parameters should be omitted for pratical purposes.</li>
<li>If a C function accepts a bitfield as parameter, it should be translated
into lower case string flags representing the flags if the bitfield is the
- last parameter and also ommiting prefixes or suffixes. (e.g. waitpid
+ last parameter and also omitting prefixes or suffixes. (e.g. waitpid
(pid, &s, WNOHANG | WUNTRACED) -> waitpid(pid, "nohang", "untraced"),
getsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt)) ->
Socket:getopt("socket", "reuseaddr"), etc.) </li>