about summary refs log tree commit diff
path: root/manual/string.texi
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2005-01-26 02:39:20 +0000
committerRoland McGrath <roland@gnu.org>2005-01-26 02:39:20 +0000
commitd68684162bd587ffe94c0f62c9504e5841855ba5 (patch)
treeda04c7e9d1f8908fdb2dc46f1b408fe177524d42 /manual/string.texi
parentedd806d26f12dd42a3f886af2bc30ae845d959e5 (diff)
downloadglibc-d68684162bd587ffe94c0f62c9504e5841855ba5.tar.gz
glibc-d68684162bd587ffe94c0f62c9504e5841855ba5.tar.xz
glibc-d68684162bd587ffe94c0f62c9504e5841855ba5.zip
* manual/memory.texi (sbrk): Fix definition.
	* manual/string.texi (strcasestr): Fix example typo.

2005-01-25  Roland McGrath  <roland@redhat.com>

	* sysdeps/generic/syslog.c [NO_SIGPIPE]: Protect sigpipe_handler decl.
Diffstat (limited to 'manual/string.texi')
-rw-r--r--manual/string.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/manual/string.texi b/manual/string.texi
index 21ab71461a..d9de12996e 100644
--- a/manual/string.texi
+++ b/manual/string.texi
@@ -1781,9 +1781,9 @@ uppercase and lowercase characters are related.
 
 For example,
 @smallexample
-strstr ("hello, world", "L")
+strcasestr ("hello, world", "L")
     @result{} "llo, world"
-strstr ("hello, World", "wo")
+strcasestr ("hello, World", "wo")
     @result{} "World"
 @end smallexample
 @end deftypefun