From: Kennedy Clark Date: Mon, 16 Mar 2009 22:10:38 +0000 (+0000) Subject: Fix escaping issue (thanks to Evan Carroll for pointing this out) X-Git-Tag: v5.8005~176 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=commitdiff_plain;h=896ec18466277312d08e0a18d6e5d66ec7aae4ac Fix escaping issue (thanks to Evan Carroll for pointing this out) --- diff --git a/lib/Catalyst/Manual/Tutorial/Intro.pod b/lib/Catalyst/Manual/Tutorial/Intro.pod index b35ad7b..0c87127 100644 --- a/lib/Catalyst/Manual/Tutorial/Intro.pod +++ b/lib/Catalyst/Manual/Tutorial/Intro.pod @@ -254,7 +254,7 @@ Catalyst::Plugin::Static::Simple -- v0.20 B You can check the versions you have installed with the following command: - perl -MEmod_nameE -e '"print $Emod_nameE::VERSION\n"' + perl -M<_mod_name_> -e '"print $<_mod_name_>::VERSION\n"' For example: perl -MCatalyst::Plugin::StackTrace -e 'print "$Catalyst::Plugin::StackTrace::VERSION\n"'