diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-04-17 16:13:32 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-04-17 16:13:32 +0200 |
commit | 10ad622dc2a9fb6563fab13719ead8baf15ff9e4 (patch) | |
tree | 82312d6f38a517dcc7c0004f78d76c667f5a674b /findutils/grep.c | |
parent | d85352b4ff51694cb35b429e4cef53302c9e7076 (diff) |
Spelling fixes in comments, documentation, tests and examples
By klemens <ka7@github.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'findutils/grep.c')
-rw-r--r-- | findutils/grep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/findutils/grep.c b/findutils/grep.c index 261e563d5..d66d85a53 100644 --- a/findutils/grep.c +++ b/findutils/grep.c @@ -515,7 +515,7 @@ static int grep_file(FILE *file) if (option_mask32 & OPT_o) { if (FGREP_FLAG) { /* -Fo just prints the pattern - * (unless -v: -Fov doesnt print anything at all) */ + * (unless -v: -Fov doesn't print anything at all) */ if (found) print_line(gl->pattern, strlen(gl->pattern), linenum, ':'); } else while (1) { @@ -823,7 +823,7 @@ int grep_main(int argc UNUSED_PARAM, char **argv) grep_done: ; } while (*argv && *++argv); - /* destroy all the elments in the pattern list */ + /* destroy all the elements in the pattern list */ if (ENABLE_FEATURE_CLEAN_UP) { while (pattern_head) { llist_t *pattern_head_ptr = pattern_head; |