diff options
author | Ville Skytta <ville.skytta@iki.fi> | 2013-12-30 15:29:35 +0100 |
---|---|---|
committer | Ondřej Bílka <neleai@seznam.cz> | 2013-12-30 15:42:26 +0100 |
commit | 9dcc8f116c57767cbdb967d57523c2050c25a583 (patch) | |
tree | 8a1644d71deb804b101852a3ff5cdfb72ad5ba93 /manual/string.texi | |
parent | d97ae285e8c82cc07b719283e8a3dc799c1b9587 (diff) | |
download | glibc-9dcc8f116c57767cbdb967d57523c2050c25a583.tar.gz glibc-9dcc8f116c57767cbdb967d57523c2050c25a583.tar.xz glibc-9dcc8f116c57767cbdb967d57523c2050c25a583.zip |
Fix spelling in manual, as in bug 16376
Diffstat (limited to 'manual/string.texi')
-rw-r--r-- | manual/string.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/manual/string.texi b/manual/string.texi index 1e45d9ddbc..e59f18c9ce 100644 --- a/manual/string.texi +++ b/manual/string.texi @@ -200,7 +200,7 @@ known size. @cindex parameter promotion Some of the memory and string functions take single characters as arguments. Since a value of type @code{char} is automatically promoted -into an value of type @code{int} when used as a parameter, the functions +into a value of type @code{int} when used as a parameter, the functions are declared with @code{int} as the type of the parameter in question. In case of the wide character function the situation is similarly: the parameter type for a single wide character is @code{wint_t} and not @@ -1773,7 +1773,7 @@ character of the substring, or a null pointer if no match was found. If @comment wchar.h @comment XPG @deftypefun {wchar_t *} wcswcs (const wchar_t *@var{haystack}, const wchar_t *@var{needle}) -@code{wcswcs} is an deprecated alias for @code{wcsstr}. This is the +@code{wcswcs} is a deprecated alias for @code{wcsstr}. This is the name originally used in the X/Open Portability Guide before the @w{Amendment 1} to @w{ISO C90} was published. @end deftypefun @@ -2291,7 +2291,7 @@ that described in @xref{Cryptographic Functions}. To store or transfer binary data in environments which only support text one has to encode the binary data by mapping the input bytes to -characters in the range allowed for storing or transfering. SVID +characters in the range allowed for storing or transferring. SVID systems (and nowadays XPG compliant systems) provide minimal support for this task. |