From: Elijah Newren Date: Tue, 5 Nov 2019 17:07:23 +0000 (+0000) Subject: Fix spelling errors in code comments X-Git-Url: https://git.ladys.computer/Gitweb/commitdiff_plain/596eecea9144203130918a1d890591d54549a6e4a4a011d9319bb70ea4879297?ds=sidebyside;hp=2edb3889e492e025733b938e574bd032cc7a04fa87fa0e5c0d8309f336be9608 Fix spelling errors in code comments Reported-by: Jens Schleusener Signed-off-by: Elijah Newren Signed-off-by: Junio C Hamano --- diff --git a/gitweb.perl b/gitweb.perl index 6b7245c..87c8dc0 100755 --- a/gitweb.perl +++ b/gitweb.perl @@ -1658,15 +1658,15 @@ sub quot_cec { my $cntrl = shift; my %opts = @_; my %es = ( # character escape codes, aka escape sequences - "\t" => '\t', # tab (HT) - "\n" => '\n', # line feed (LF) - "\r" => '\r', # carrige return (CR) - "\f" => '\f', # form feed (FF) - "\b" => '\b', # backspace (BS) - "\a" => '\a', # alarm (bell) (BEL) - "\e" => '\e', # escape (ESC) - "\013" => '\v', # vertical tab (VT) - "\000" => '\0', # nul character (NUL) + "\t" => '\t', # tab (HT) + "\n" => '\n', # line feed (LF) + "\r" => '\r', # carriage return (CR) + "\f" => '\f', # form feed (FF) + "\b" => '\b', # backspace (BS) + "\a" => '\a', # alarm (bell) (BEL) + "\e" => '\e', # escape (ESC) + "\013" => '\v', # vertical tab (VT) + "\000" => '\0', # nul character (NUL) ); my $chr = ( (exists $es{$cntrl}) ? $es{$cntrl}