From: Dave Rolsky Date: Thu, 30 Jun 2011 18:12:00 +0000 (-0400) Subject: Fix list indentation X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e48110860357453b493d236a9bdb2799255ec562;p=gitmo%2Fmoose-presentations.git Fix list indentation --- diff --git a/moose-class/slides/index.html b/moose-class/slides/index.html index cf53cbb..5c2cf5f 100644 --- a/moose-class/slides/index.html +++ b/moose-class/slides/index.html @@ -1155,8 +1155,8 @@ Person->can('extends');

Cleaning Up Moose Droppings

package Person;
-use namespace::autoclean;
 use Moose;
+use namespace::autoclean;
 
 ...
 
@@ -2394,9 +2394,9 @@ around run => sub {
         
  • alter parameters passed to the original method
  • alter the return value of the original method
  • not call the original method at all (or call a different method)
  • -
  • When using modifiers in a role, require the modified method
  • +
  • When using modifiers in a role, require the modified method