Some small tweaks to grammar and add an inline style to make a slide fit vertically
Dave Rolsky [Tue, 2 Feb 2010 18:09:58 +0000 (12:09 -0600)]
moose-class/slides/index.html

index 3266122..973b825 100644 (file)
@@ -892,7 +892,7 @@ use Moose;</code></pre>
   <h1>BUILDARGS</h1>
 
   <ul>
-    <li>Takes <code>@_</code>, returns a hash reference of attribute names/value</li>
+    <li>Takes <code>@_</code>, returns a hash reference of attribute name/value pairs</li>
     <li>Accepts a hash or hashref; throws otherwise</li>
     <li>Provide your own for other cases</li>
     <li><strong>Always</strong> call <code>$class-&gt;SUPER::BUILDARGS(@_)</code> as a fallback!</li>
@@ -951,7 +951,7 @@ sub BUILD {
 
   <pre><code>Person-&gt;new(@_)</code></pre>
 
-  <ol>
+  <ol style="margin-top: 0">
     <li>Calls <code>Person-&gt;BUILDARGS(@_)</code> to turn <code>@_</code> into a hashref</li>
     <li>Blesses a reference</li>
     <li>Populates attributes based on the hashref from #1</li>