diff options
author | Stefan Weil <sw@weilnetz.de> | 2016-03-26 10:11:33 +0100 |
---|---|---|
committer | Stefan Weil <sw@weilnetz.de> | 2016-03-26 10:20:46 +0100 |
commit | 6f7b8e3f5bc0eaea00f479d6197d5381970ecff1 (patch) | |
tree | 9843e8c7aff896e7b29f2418cb1fc793bffaa015 /documentation/api/modules/nixio.README.html | |
parent | cd43e35b9d07208277c3665afdd583ccda79d2b8 (diff) |
documentation: Fix typos (found by codespell)
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Diffstat (limited to 'documentation/api/modules/nixio.README.html')
-rw-r--r-- | documentation/api/modules/nixio.README.html | 6 |
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> |