Use almost equals sign instead of =~
[gitmo/moose-presentations.git] / moose-class / slides / index.html
index af99769..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>
 
@@ -2588,15 +2588,12 @@ Item
   <h1>Bool</h1>
 
   <h2>True</h2>
-  <pre><code>1
-924.1
-'true'
-{}</code></pre>
+  <pre><code>1</code></pre>
 
   <h2>False</h2>
   <pre><code>0
-0.0
 '0'
+''
 undef</code></pre>
 
   <ul>
@@ -3782,7 +3779,7 @@ with HasCollection =&gt; { type =&gt; 'Int' };</code></pre>
     <li>mailing list - <a href="mailto:moose@perl.org">moose@perl.org</a></li>
     <li>Slides and exercises are in Moose's git repo:
         <br />
-        <span style="font-size:80%; white-space: nowrap">git://jules.scsys.co.uk/gitmo/moose-presentations</span></li>
+        <span style="font-size:80%; white-space: nowrap">git://git.moose.perl.org/moose-presentations/moose.git</span></li>
   </ul>
 </div>