diff options
author | Denys Vlasenko | 2010-06-04 01:31:48 +0200 |
---|---|---|
committer | Denys Vlasenko | 2010-06-04 01:31:48 +0200 |
commit | c46792492fa4a0b2631e9c711864f37a493aeef6 (patch) | |
tree | 3e554ad255b0dd0b287cbed3503aadda68951458 /editors/sed.c | |
parent | bf5f99ffb245e9039df62e5d3f77674fd7b3b2a7 (diff) | |
download | busybox-c46792492fa4a0b2631e9c711864f37a493aeef6.zip busybox-c46792492fa4a0b2631e9c711864f37a493aeef6.tar.gz |
typo fix
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'editors/sed.c')
-rw-r--r-- | editors/sed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/sed.c b/editors/sed.c index 7fe2809..a5ef400 100644 --- a/editors/sed.c +++ b/editors/sed.c @@ -917,7 +917,7 @@ static void process_files(void) /* Or did we match the start of a numerical range? */ || (sed_cmd->beg_line > 0 && (sed_cmd->end_line || sed_cmd->end_match - /* note: even if end numeric and is < linenum too, + /* note: even if end is numeric and is < linenum too, * GNU sed matches! We match too */ ? (sed_cmd->beg_line <= linenum) /* N,end */ : (sed_cmd->beg_line == linenum) /* N */ |