aboutsummaryrefslogtreecommitdiffstats
path: root/include/wchar.h
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-11-18 07:43:41 +0100
committerMattias Andrée <maandree@operamail.com>2015-11-18 07:43:41 +0100
commit406984648d4184fcf396cebadb39c31ca3dbdd69 (patch)
tree945910856bb198ac7943ab04561aa9959c2da826 /include/wchar.h
parentfix errors (diff)
downloadslibc-406984648d4184fcf396cebadb39c31ca3dbdd69.tar.gz
slibc-406984648d4184fcf396cebadb39c31ca3dbdd69.tar.bz2
slibc-406984648d4184fcf396cebadb39c31ca3dbdd69.tar.xz
typo
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r--include/wchar.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/wchar.h b/include/wchar.h
index 5223d3f..b705510 100644
--- a/include/wchar.h
+++ b/include/wchar.h
@@ -153,7 +153,7 @@ wchar_t* wmempmove(wchar_t*, const wchar_t*, size_t);
* @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.
@@ -171,7 +171,7 @@ wchar_t* wmemccpy(wchar_t* restrict, const wchar_t* restrict, wchar_t, size_t);
* @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.