Fix incremental for override/super example
Dave Rolsky [Sun, 10 Oct 2010 01:00:00 +0000 (20:00 -0500)]
Shawn, I want to highlight super(); on its own.

moose-class/slides/index.html

index dbb184d..b004446 100644 (file)
@@ -1054,13 +1054,13 @@ use Moose;
 
 <span class="current incremental">extends 'Person';</span>
 
-<span class="incremental">override</span> <span class="incremental">work</span> <span class="incremental">=&gt; sub {
+<span class="incremental">override</span> <span class="incremental">work</span> =&gt; sub {
     my $self = shift;
 
     die "Pay me first"
         unless $self-&gt;got_paid;
-    super();
-}</span><span class="incremental">;</span></code></pre>
+    <span class="incremental">super();</span>
+}<span class="incremental">;</span></code></pre>
 </div>
 
 <div class="slide">
@@ -1330,7 +1330,7 @@ print $person-&gt;full_name
   <h1>Roles in Practice</h1>
 
   <ul>
-    <li>Consuming a role =~ inlining the role</li>
+    <li>Consuming a role = inlining the role</li>
   </ul>
 </div>