Fix a few small typos
Dave Rolsky [Fri, 5 Feb 2010 19:40:39 +0000 (13:40 -0600)]
moose-class/slides/index.html

index 6bcad03..b065633 100644 (file)
@@ -1882,7 +1882,7 @@ has bank => (
 
   <ul>
     <li>A method <em>name</em></li>
-    <li>When called, this methods returns the default value</li>
+    <li>When called, this method returns the default value</li>
   </ul>
 </div>
 
@@ -1956,7 +1956,8 @@ has bank =&gt; (
 use Moose;
 
 has shoe_size =&gt; (
-    is =&gt; 'ro',
+    is       =&gt; 'ro',
+    required =&gt; 'ro',
 );</code></pre>
 </div>