Use almost equals sign instead of =~
[gitmo/moose-presentations.git] / moose-class / slides / index.html
index dbb184d..2f3c9d3 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 &#x2248; inlining the role</li>
   </ul>
 </div>