strstr.3: Clarify RETURN VALUE: s/substring/located substring/

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2014-01-04 23:58:00 +13:00
parent 4d9fbd4e6e
commit 65b1e0ed19
1 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@
.\" Added history, aeb, 980113.
.\" 2005-05-05 mtk: added strcasestr()
.\"
.TH STRSTR 3 2011-09-28 "GNU" "Linux Programmer's Manual"
.TH STRSTR 3 2014-01-04 "GNU" "Linux Programmer's Manual"
.SH NAME
strstr, strcasestr \- locate a substring
.SH SYNOPSIS
@ -61,7 +61,7 @@ function is like
but ignores the case of both arguments.
.SH RETURN VALUE
These functions return a pointer to the beginning of the
substring, or NULL if the substring is not found.
located substring, or NULL if the substring is not found.
.SH CONFORMING TO
The
.BR strstr ()