diff --git a/ChangeLog b/ChangeLog index d4ca62f1..551df900 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@ 2007-01-22 James Youngman * lib/regeprops.c (describe_regex_syntax): fixed a typo in the text + * doc/find.texi (Multiple Files): fixed a typo 2007-01-16 James Youngman diff --git a/doc/find.texi b/doc/find.texi index 1b2f116d..d8eaf761 100644 --- a/doc/find.texi +++ b/doc/find.texi @@ -1955,7 +1955,7 @@ where it appears on its own in an argument, GNU @code{find} replaces @node Multiple Files @subsection Multiple Files -Sometimes you need to process files one of the time. But usually this +Sometimes you need to process files one at a time. But usually this is not necessary, and, it is faster to run a command on as many files as possible at a time, rather than once per file. Doing this saves on the time it takes to start up the command each time. diff --git a/lib/regexprops.c b/lib/regexprops.c index 06371cc6..0b86f395 100644 --- a/lib/regexprops.c +++ b/lib/regexprops.c @@ -306,7 +306,7 @@ describe_regex_syntax(int options) literal("The character @samp{$} only represents the end of a string when it appears:"); beginenum(); enum_item("At the end of a regular expression"); - enum_item("Before an close-group, signified by "); + enum_item("Before a close-group, signified by "); if (options & RE_NO_BK_PARENS) { literal("@samp{)}");