summaryrefslogtreecommitdiff
path: root/lib/strpbrk.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2002-11-22 11:13:32 +0000
committerJim Meyering <jim@meyering.net>2002-11-22 11:13:32 +0000
commitd81d040dea408a3e8ba3a1668fa3cfbcebc16a39 (patch)
treec0422515c799a5c420827a3607a730664a06a67c /lib/strpbrk.c
parent8aa90d84881cf10695e42a2472aed5ba5ac6601d (diff)
downloadcoreutils-d81d040dea408a3e8ba3a1668fa3cfbcebc16a39.tar.xz
fix typo in comment
Diffstat (limited to 'lib/strpbrk.c')
-rw-r--r--lib/strpbrk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/strpbrk.c b/lib/strpbrk.c
index 6ed62a63c..6a6a321cd 100644
--- a/lib/strpbrk.c
+++ b/lib/strpbrk.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1994, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1994, 2000, 2002 Free Software Foundation, Inc.
NOTE: The canonical source of this file is maintained with the GNU C Library.
Bugs can be reported to bug-glibc@prep.ai.mit.edu.
@@ -20,7 +20,7 @@
# include <config.h>
#endif
-/* Find the first ocurrence in S of any character in ACCEPT. */
+/* Find the first occurrence in S of any character in ACCEPT. */
char *
strpbrk (const char *s, const char *accept)
{