X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2F10_Appendices.pod;fp=lib%2FCatalyst%2FManual%2FTutorial%2F10_Appendices.pod;h=84c5d6a7dc83bf37598ba7719275c897da229cfc;hp=9abe1a698cd6f6c33d613215db8f898042487168;hb=080bb6202ae1dc9a786bb32afcb391f542c2f0fc;hpb=08c0026dc8cd9b6f157e952b143ad329e68dbbe2 diff --git a/lib/Catalyst/Manual/Tutorial/10_Appendices.pod b/lib/Catalyst/Manual/Tutorial/10_Appendices.pod index 9abe1a6..84c5d6a 100644 --- a/lib/Catalyst/Manual/Tutorial/10_Appendices.pod +++ b/lib/Catalyst/Manual/Tutorial/10_Appendices.pod @@ -77,14 +77,14 @@ regex patterns). I: =item * -":0,$s/^ " +C<":0,$s/^ "> Removes four leading spaces from the entire file (from the first line, C<0>, to the last line, C<$>). =item * -"%s/^ " +C<"%s/^ "> A shortcut for the previous item (C<%> specifies the entire file; so this removes four leading spaces from every line). @@ -98,7 +98,7 @@ the regex command is executed (".") to the last line of the file. =item * -":.,44s/^ " +C<":.,44s/^ "> Removes four leading space from the current line through line 44 (obviously adjust the C<44> to the appropriate value in your example).