From f3b10e8e054c89c728d99340e186e9a65743a074 Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Fri, 8 Oct 2004 20:37:44 +0000 Subject: [PATCH] another comment fix git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1976 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- src/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.c b/src/utils.c index f04f2123..0f6cf7aa 100644 --- a/src/utils.c +++ b/src/utils.c @@ -310,7 +310,7 @@ const char *strstrwrapper(const char *haystack, const char *needle, const char *start) { /* start can be 1 character before the start or after the end of the - * line. In either case, we just say there is no match found. */ + * line. In either case, we just say no match was found. */ if ((start > haystack && *(start - 1) == '\0') || start < haystack) return NULL; assert(haystack != NULL && needle != NULL && start != NULL); -- 2.39.5