summaryrefslogtreecommitdiff
path: root/src/grep.c
diff options
context:
space:
mode:
authorAlain Magloire <alainm@rcsm.ee.mcgill.ca>1999-03-03 02:44:25 +0000
committerAlain Magloire <alainm@rcsm.ee.mcgill.ca>1999-03-03 02:44:25 +0000
commit84fdef9812ce6e5dc77b3d09edd3b12d987e1e8f (patch)
tree758edf65c4833c5c27fb908982dbd4debc6dc823 /src/grep.c
parent8054b077ce5d43d7c08e22fa860d8541cebf4443 (diff)
downloadgrep-84fdef9812ce6e5dc77b3d09edd3b12d987e1e8f.tar.gz
typo.
typos.
Diffstat (limited to 'src/grep.c')
-rw-r--r--src/grep.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/grep.c b/src/grep.c
index 57019e33..f33b1b46 100644
--- a/src/grep.c
+++ b/src/grep.c
@@ -1118,21 +1118,21 @@ main (argc, argv)
if (matcher && strcmp (matcher, "posix-egrep") != 0)
fatal (_("you may specify only one of -E, -F, or -G"), 0);
if (strcmp (default_matcher, "grep") != 0)
- fatal (_("different matcher can only be specified with grep"), 0);
+ fatal (_("different matchers can only be specify with grep"), 0);
matcher = "posix-egrep";
break;
case 'F':
if (matcher && strcmp(matcher, "fgrep") != 0)
fatal(_("you may specify only one of -E, -F, or -G"), 0);;
if (strcmp (default_matcher, "grep") != 0)
- fatal (_("different matcher can only be specified with grep"), 0);
+ fatal (_("different matchers can only be specify with grep"), 0);
matcher = "fgrep";
break;
case 'G':
if (matcher && strcmp (matcher, "grep") != 0)
fatal (_("you may specify only one of -E, -F, or -G"), 0);
if (strcmp (default_matcher, "grep") != 0)
- fatal (_("different matcher can only be specified with grep"), 0);
+ fatal (_("different matchers can only be specify with grep"), 0);
matcher = "grep";
break;
case 'H':