<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -138,16 +138,16 @@ module Pow
       name &lt;=&gt; other
     end    
 
-    # Returns the last component of the filename given, can optionally exclude the extention
+    # Returns the last component of the filename given, can optionally exclude the extension
     #
     # ==== Parameters
-    # with_extention&lt;Boolean&gt;
-    def name(with_extention=true)
-      ::File.basename path, (with_extention ? &quot;&quot; : &quot;.#{extention}&quot;)
+    # with_extension&lt;Boolean&gt;
+    def name(with_extension=true)
+      ::File.basename path, (with_extension ? &quot;&quot; : &quot;.#{extension}&quot;)
     end
     
     # Returns the extension (the portion of file name in path after the period).
-    def extention
+    def extension
       ::File.extname(path)[1..-1] # Gets rid of the dot
     end
     </diff>
      <filename>lib/pow/pow.rb</filename>
    </modified>
    <modified>
      <diff>@@ -26,15 +26,15 @@ describe Pow::File do
     @file.name.should == &quot;file.txt&quot;
   end
   
-  it &quot;gets name without extention&quot; do    
+  it &quot;gets name without extension&quot; do    
     @file.name(false).should == &quot;file&quot;
   end
 
-  it &quot;gets name without extention, even when there is no extention&quot; do    
+  it &quot;gets name without extension, even when there is no extension&quot; do    
     Pow(&quot;./this/word&quot;).name(false).should == &quot;word&quot;
   end  
 
-  it &quot;matches regular expression for extention&quot; do    
+  it &quot;matches regular expression for extension&quot; do    
     @file.name.should =~ /txt/
   end
 
@@ -43,14 +43,14 @@ describe Pow::File do
   end
 
   it &quot;has correct extension&quot; do    
-    @file.extention.should == &quot;txt&quot;
+    @file.extension.should == &quot;txt&quot;
   end
 
   it &quot;returns nil if there is no extension&quot; do
     open(&quot;#{@dir_pathname}/README&quot;, &quot;w+&quot;) {|f| f.write &quot;readme&quot;}
     extensionless_file = Pow(&quot;#{@dir_pathname}/README&quot;)
     
-    extensionless_file.extention.should == nil
+    extensionless_file.extension.should == nil
   end
 
   it &quot;is aware of its existence&quot; do    </diff>
      <filename>spec/file_spec.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>3a55f9277853c32c18b29cbc01cb9212510a0da1</id>
    </parent>
  </parents>
  <author>
    <name>Corey Johnson</name>
    <email>probablycorey@gmail.com</email>
  </author>
  <url>http://github.com/probablycorey/pow/commit/7b86df65e72add1a0ccb3d800fa45de4fea7c2d0</url>
  <id>7b86df65e72add1a0ccb3d800fa45de4fea7c2d0</id>
  <committed-date>2009-02-12T16:26:15-08:00</committed-date>
  <authored-date>2009-02-12T16:26:15-08:00</authored-date>
  <message>extension was spelled extention!</message>
  <tree>0b9d927fd732c9161e4dfba67f5ae1a82fcec2f3</tree>
  <committer>
    <name>Corey Johnson</name>
    <email>probablycorey@gmail.com</email>
  </committer>
</commit>
