From: Graham Knop Date: Sun, 10 Mar 2019 03:35:08 +0000 (+0100) Subject: fix some format codes with angle brackets X-Git-Tag: v5.9010~16 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=commitdiff_plain;h=08c0026dc8cd9b6f157e952b143ad329e68dbbe2 fix some format codes with angle brackets --- diff --git a/lib/Catalyst/Manual/Tutorial/05_Authentication.pod b/lib/Catalyst/Manual/Tutorial/05_Authentication.pod index 4a5c05e..e5fe260 100644 --- a/lib/Catalyst/Manual/Tutorial/05_Authentication.pod +++ b/lib/Catalyst/Manual/Tutorial/05_Authentication.pod @@ -312,7 +312,7 @@ following code: B Here is a short script that will dump the contents of -Cconfig> to L format in F: +C<< MyApp->config >> to L format in F: $ CATALYST_DEBUG=0 perl -Ilib -e 'use MyApp; use Config::General; Config::General->new->save_file("myapp.conf", MyApp->config);' @@ -684,9 +684,9 @@ text: $user->update; } -PassphraseColumn lets us simply call C<$user->check_password($password)> +PassphraseColumn lets us simply call C<< $user->check_password($password) >> to see if the user has supplied the correct password, or, as we show -above, call C<$user->update($new_password)> to update the hashed +above, call C<< $user->update($new_password) >> to update the hashed password stored for this user. Then run the following command: