From: Dave Rolsky Date: Wed, 20 Jan 2010 22:37:39 +0000 (-0600) Subject: Small formatting and typo fixes X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=255fe70078ad34620996c42945b563a5471cceee;p=gitmo%2Fmoose-presentations.git Small formatting and typo fixes --- diff --git a/moose-class/slides/index.html b/moose-class/slides/index.html index 6422804..3266122 100644 --- a/moose-class/slides/index.html +++ b/moose-class/slides/index.html @@ -3570,11 +3570,11 @@ Iterate til this passes all its tests

Already Mentioned Several

@@ -3585,8 +3585,8 @@ Iterate til this passes all its tests use 5.10.0; # for say class Person { - has greeting - => ( is => 'ro', isa => 'Str' ); + has greeting => + ( is => 'ro', isa => 'Str' ); method speak { say $self->greeting; @@ -3601,6 +3601,7 @@ class Person {
  • Still experimental-ish, but seeing more and more use
  • Not a source filter!
  • Hooks into the Perl parser rather than filtering all your code
  • +
  • But not supported by PPI, perltidy, etc.
  • (yet?) @@ -3608,7 +3609,7 @@ class Person {

    MooseX::StrictConstructor