From: Dave Rolsky Date: Fri, 7 Jun 2013 03:50:56 +0000 (-0500) Subject: Improve highlighting on native traits sample code X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2Fmoose-presentations.git;a=commitdiff_plain;h=66b11069294324c31214650bd2e466fb75acd1f5 Improve highlighting on native traits sample code --- diff --git a/moose-class/slides/index.html b/moose-class/slides/index.html index e3814b7..46ac36a 100644 --- a/moose-class/slides/index.html +++ b/moose-class/slides/index.html @@ -3294,7 +3294,7 @@ has history => (
package Person;
 use Moose;
 has _favorite_numbers => (
-    traits   => [ 'Array' ],
+    traits   => [ 'Array' ],
     isa      => 'ArrayRef[Int]',
     default  => sub { [] },
     init_arg => undef,