diff options
author | Andreas Jaeger <aj@suse.de> | 2001-02-10 17:07:35 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2001-02-10 17:07:35 +0000 |
commit | 6be569a4a6842f0c8b443ff1a2df3044e1985e05 (patch) | |
tree | b13e7665a3eb60e7cc8ab41df16b5ba9f3234db2 | |
parent | 87b56f36cc66554fdc2c435476a96a4f48789fea (diff) | |
download | glibc-6be569a4a6842f0c8b443ff1a2df3044e1985e05.zip glibc-6be569a4a6842f0c8b443ff1a2df3044e1985e05.tar.gz glibc-6be569a4a6842f0c8b443ff1a2df3044e1985e05.tar.bz2 |
(Search Functions): Fix typo.
-rw-r--r-- | manual/string.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/string.texi b/manual/string.texi index 745cb4a..e2f5186 100644 --- a/manual/string.texi +++ b/manual/string.texi @@ -1077,7 +1077,7 @@ The @code{rawmemchr} function exists for just this situation which is surprisingly frequent. The interface is similar to @code{memchr} except that the @var{size} parameter is missing. The function will look beyond the end of the block pointed to by @var{block} in case the programmer -made in error in assuming that the byte @var{c} is present in the block. +made an error in assuming that the byte @var{c} is present in the block. In this case the result is unspecified. Otherwise the return value is a pointer to the located byte. |