From 65b1e0ed19f43ca51760dd236a6c07f37d0a99da Mon Sep 17 00:00:00 2001 From: Michael Kerrisk Date: Sat, 4 Jan 2014 23:58:00 +1300 Subject: [PATCH] strstr.3: Clarify RETURN VALUE: s/substring/located substring/ Signed-off-by: Michael Kerrisk --- man3/strstr.3 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/man3/strstr.3 b/man3/strstr.3 index 96fc8dad6..ba03f19f8 100644 --- a/man3/strstr.3 +++ b/man3/strstr.3 @@ -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 ()