diff options
Diffstat (limited to 'src/wchar')
-rw-r--r-- | src/wchar/wmemccpy.c | 2 | ||||
-rw-r--r-- | src/wchar/wmemcmove.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/wchar/wmemccpy.c b/src/wchar/wmemccpy.c index 9e6f684..a6eb7ca 100644 --- a/src/wchar/wmemccpy.c +++ b/src/wchar/wmemccpy.c @@ -30,7 +30,7 @@ * @param c The character to stop at if encountered. * @param size The maximum number of wide characters 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/wchar/wmemcmove.c b/src/wchar/wmemcmove.c index 65bf5c5..a86138f 100644 --- a/src/wchar/wmemcmove.c +++ b/src/wchar/wmemcmove.c @@ -30,7 +30,7 @@ * @param c The character to stop at if encountered. * @param size The maximum number of wide characters 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. |