diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-11-18 07:43:41 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-11-18 07:43:41 +0100 |
commit | 406984648d4184fcf396cebadb39c31ca3dbdd69 (patch) | |
tree | 945910856bb198ac7943ab04561aa9959c2da826 /src/string/mem | |
parent | fix errors (diff) | |
download | slibc-406984648d4184fcf396cebadb39c31ca3dbdd69.tar.gz slibc-406984648d4184fcf396cebadb39c31ca3dbdd69.tar.bz2 slibc-406984648d4184fcf396cebadb39c31ca3dbdd69.tar.xz |
typo
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/string/mem')
-rw-r--r-- | src/string/mem/memccpy.c | 2 | ||||
-rw-r--r-- | src/string/mem/memcmove.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/string/mem/memccpy.c b/src/string/mem/memccpy.c index 18e423d..01b4a4b 100644 --- a/src/string/mem/memccpy.c +++ b/src/string/mem/memccpy.c @@ -28,7 +28,7 @@ * @param c The byte to stop at if encountered. * @param size The maximum number of bytes to copy. * @return `NULL` if `c` was not encountered, otherwise - * the possition of `c` translated to `whither`, + * the position of `c` translated to `whither`, * that is, the address of `whither` plus the * number of copied characters; the address of * one character passed the last written character. diff --git a/src/string/mem/memcmove.c b/src/string/mem/memcmove.c index 50ed1f9..ad10606 100644 --- a/src/string/mem/memcmove.c +++ b/src/string/mem/memcmove.c @@ -30,7 +30,7 @@ * @param c The byte to stop at if encountered. * @param size The maximum number of bytes to copy. * @return `NULL` if `c` was not encountered, otherwise - * the possition of `c` translated to `whither`, + * the position of `c` translated to `whither`, * that is, the address of `whither` plus the * number of copied characters; the address of * one character passed the last written character. |