From 9c8b40514fc3adfe76cc60fe183ad162adbd327e Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 20 Oct 2020 19:06:14 -0500 Subject: Typo. --- toys/posix/sed.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'toys') diff --git a/toys/posix/sed.c b/toys/posix/sed.c index 37a71db8..8fbef0cb 100644 --- a/toys/posix/sed.c +++ b/toys/posix/sed.c @@ -93,7 +93,7 @@ config SED b LABEL Branch, jumps to :LABEL (with no LABEL to end of SCRIPT) c TEXT Delete matching ADDRESS range and output TEXT instead i TEXT Insert text (output immediately) - r FILE Append contents of FILIE to output before reading next line. + r FILE Append contents of FILE to output before reading next line. s/S/R/F Search for regex S replace match with R using flags F. Delimiter is anything but \n or \, escape with \ to use in S or R. Printf escapes work. Unescaped & in R becomes full matched text, \1 @@ -114,8 +114,6 @@ config SED The TEXT arguments (to a c i) may end with an unescaped "\" to append the next line (leading whitespace is not skipped), and treat ";" as a literal character (use "\;" instead). - - */ #define FOR_sed -- cgit v1.2.3