<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -26,7 +26,7 @@ describe :array_join, :shared =&gt; true do
     [1, [2, ArraySpecs::MyArray[3, 4], 5], 6].send(@method, &quot;:&quot;).should == &quot;1:2:3:4:5:6&quot;
   end
 
-  it &quot;tries to convert the passed seperator to a String using #to_str&quot; do
+  it &quot;tries to convert the passed separator to a String using #to_str&quot; do
     obj = mock('::')
     obj.should_receive(:to_str).and_return(&quot;::&quot;)
     [1, 2, 3, 4].send(@method, obj).should == '1::2::3::4'</diff>
      <filename>core/array/shared/join.rb</filename>
    </modified>
    <modified>
      <diff>@@ -6,6 +6,6 @@ describe &quot;IO#each_line&quot; do
   it_behaves_like :io_each, :each_line
 end
 
-describe &quot;IO#each_line when passed a seperator&quot; do
+describe &quot;IO#each_line when passed a separator&quot; do
   it_behaves_like :io_each_separator, :each_line
 end</diff>
      <filename>core/io/each_line_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -6,6 +6,6 @@ describe &quot;IO#each&quot; do
   it_behaves_like(:io_each, :each)
 end
 
-describe &quot;IO#each when passed a seperator&quot; do
+describe &quot;IO#each when passed a separator&quot; do
   it_behaves_like :io_each_separator, :each_line
 end</diff>
      <filename>core/io/each_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -44,7 +44,7 @@ describe &quot;IO#readlines when passed no arguments&quot; do
   end
 end
 
-describe &quot;IO#readlines when passed [seperator]&quot; do
+describe &quot;IO#readlines when passed [separator]&quot; do
   before(:each) do
     @io = File.open(File.dirname(__FILE__) + '/fixtures/readlines.txt')
   end
@@ -53,7 +53,7 @@ describe &quot;IO#readlines when passed [seperator]&quot; do
     @io.close
   end
   
-  it &quot;returns an Array containing lines based on the passed seperator&quot; do
+  it &quot;returns an Array containing lines based on the passed separator&quot; do
     @io.readlines('r').should == [
       &quot;Voici la ligne une.\nQui \303\250 la linea due.\nAqu\303\255 est\303\241 la l\303\255nea tr&quot;,
       &quot;es.\nIst hier&quot;,
@@ -83,7 +83,7 @@ describe &quot;IO#readlines when passed [seperator]&quot; do
     $_.should == &quot;test&quot;
   end
 
-  it &quot;returns an Array containing all paragraphs when the passed seperator is an empty String&quot; do
+  it &quot;returns an Array containing all paragraphs when the passed separator is an empty String&quot; do
     File.open(File.dirname(__FILE__) + '/fixtures/paragraphs.txt') do |io|
       io.readlines(&quot;&quot;).should == [&quot;This is\n\n&quot;, &quot;an example\n\n&quot;, &quot;of paragraphs.&quot;]
     end
@@ -96,7 +96,7 @@ describe &quot;IO#readlines when passed [seperator]&quot; do
       &quot;Ist hier Linie vier.\nEst\303\241 aqui a linha cinco.\nHere is line six.\n&quot;]
   end
   
-  it &quot;tries to convert the passed seperator to a String using #to_str&quot; do
+  it &quot;tries to convert the passed separator to a String using #to_str&quot; do
     obj = mock('to_str')
     obj.stub!(:to_str).and_return(&quot;r&quot;)
     @io.readlines(obj).should == [
@@ -162,12 +162,12 @@ describe &quot;IO.readlines when passed [file_name]&quot; do
   end
 end
 
-describe &quot;IO#readlines when passed [file_name, seperator]&quot; do
+describe &quot;IO#readlines when passed [file_name, separator]&quot; do
   before(:each) do
     @file = File.dirname(__FILE__) + '/fixtures/readlines.txt'
   end
   
-  it &quot;returns an Array containing lines of file_name based on the passed seperator&quot; do
+  it &quot;returns an Array containing lines of file_name based on the passed separator&quot; do
     IO.readlines(@file, 'r').should == [
       &quot;Voici la ligne une.\nQui \303\250 la linea due.\nAqu\303\255 est\303\241 la l\303\255nea tr&quot;,
       &quot;es.\nIst hier&quot;,
@@ -182,12 +182,12 @@ describe &quot;IO#readlines when passed [file_name, seperator]&quot; do
     $_.should == &quot;test&quot;
   end
 
-  it &quot;returns an Array containing all paragraphs when the passed seperator is an empty String&quot; do
+  it &quot;returns an Array containing all paragraphs when the passed separator is an empty String&quot; do
     para_file = File.dirname(__FILE__) + '/fixtures/paragraphs.txt'
     IO.readlines(para_file, &quot;&quot;).should == [&quot;This is\n\n&quot;, &quot;an example\n\n&quot;, &quot;of paragraphs.&quot;]
   end
   
-  it &quot;tries to convert the passed seperator to a String using #to_str&quot; do
+  it &quot;tries to convert the passed separator to a String using #to_str&quot; do
     obj = mock('to_str')
     obj.stub!(:to_str).and_return(&quot;r&quot;)
     IO.readlines(@file, obj).should == [</diff>
      <filename>core/io/readlines_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -35,7 +35,7 @@ describe :io_each, :shared =&gt; true do
     $_.should == &quot;test&quot;
   end
 
-  it &quot;uses $/ as the default line seperator&quot; do
+  it &quot;uses $/ as the default line separator&quot; do
     seen = []
     begin
       old_rs, $/ = $/, &quot; &quot;
@@ -94,7 +94,7 @@ describe :io_each_separator, :shared =&gt; true do
     @io.close
   end
 
-  it &quot;uses the passed argument as the line seperator&quot; do
+  it &quot;uses the passed argument as the line separator&quot; do
     seen = []
     @io.send(@method, &quot; &quot;) {|s| seen &lt;&lt; s}
     seen.should == [&quot;Voici &quot;, &quot;la &quot;, &quot;ligne &quot;, &quot;une.\nQui &quot;, &quot;\303\250 &quot;, &quot;la &quot;,
@@ -113,7 +113,7 @@ describe :io_each_separator, :shared =&gt; true do
     @io.send(@method) {|l| l }.should equal(@io)
   end
 
-  it &quot;tries to convert the passed seperator to a String using #to_str&quot; do
+  it &quot;tries to convert the passed separator to a String using #to_str&quot; do
     obj = mock(&quot;to_str&quot;)
     obj.stub!(:to_str).and_return(&quot; &quot;)
     
@@ -125,14 +125,14 @@ describe :io_each_separator, :shared =&gt; true do
       &quot;linha &quot;, &quot;cinco.\nHere &quot;, &quot;is &quot;, &quot;line &quot;, &quot;six.\n&quot;]
   end
 
-  it &quot;yields self's content starting from the current position when the passed seperator is nil&quot; do
+  it &quot;yields self's content starting from the current position when the passed separator is nil&quot; do
     seen = []
     @io.pos = 100
     @io.send(@method, nil) {|s| seen &lt;&lt; s}
     seen.should == [&quot;qui a linha cinco.\nHere is line six.\n&quot;]
   end
   
-  it &quot;yields each paragraph when passed an empty String as seperator&quot; do
+  it &quot;yields each paragraph when passed an empty String as separator&quot; do
     seen = []
     para_file = File.dirname(__FILE__) + '/../fixtures/paragraphs.txt'
     File.open(para_file) do |io|</diff>
      <filename>core/io/shared/each.rb</filename>
    </modified>
    <modified>
      <diff>@@ -39,7 +39,7 @@ describe &quot;Kernel.warn&quot; do
     }.should output(nil, &quot;&quot;)
   end
 
-  it &quot;writes the default record seperator (\\n) and NOT $/ to $stderr after the warning message&quot; do
+  it &quot;writes the default record separator (\\n) and NOT $/ to $stderr after the warning message&quot; do
     lambda {
       v = $VERBOSE
       rs = $/</diff>
      <filename>core/kernel/warn_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -90,7 +90,7 @@ describe &quot;String#chomp with separator&quot; do
   end
 end
 
-describe &quot;String#chomp! with seperator&quot; do
+describe &quot;String#chomp! with separator&quot; do
   it &quot;modifies self in place and returns self&quot; do
     s = &quot;one\n&quot;
     s.chomp!.should equal(s)</diff>
      <filename>core/string/chomp_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -32,7 +32,7 @@ describe &quot;CSV.generate&quot; do
     end
   end
 
-  it &quot;creates a BasicWriter with ; as the seperator inside the block&quot; do
+  it &quot;creates a BasicWriter with ; as the separator inside the block&quot; do
     CSV::generate(@outfile_name, ?;) do |writer|
       writer.should be_kind_of(CSV::BasicWriter)
     end</diff>
      <filename>library/csv/generate_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -64,17 +64,17 @@ describe &quot;CSV.parse_line&quot; do
     result.should == [[nil],[nil],['bar']]
   end
 
-  it &quot;parses 'foo' into [['foo']] with a seperator of ;&quot; do
+  it &quot;parses 'foo' into [['foo']] with a separator of ;&quot; do
     result = CSV::parse &quot;foo&quot;, ?;
     result.should == [['foo']]
   end
 
-  it &quot;parses 'foo;bar' into [['foo','bar']] with a seperator of ;&quot; do
+  it &quot;parses 'foo;bar' into [['foo','bar']] with a separator of ;&quot; do
     result = CSV::parse &quot;foo;bar&quot;, ?;
     result.should == [['foo','bar']]
   end
 
-  it &quot;parses 'foo;bar\nbaz;quz' into [['foo','bar'],['baz','quz']] with a seperator of ;&quot; do
+  it &quot;parses 'foo;bar\nbaz;quz' into [['foo','bar'],['baz','quz']] with a separator of ;&quot; do
     result = CSV::parse &quot;foo;bar\nbaz;quz&quot;, ?;
     result.should == [['foo','bar'],['baz','quz']]
   end</diff>
      <filename>library/csv/parse_line_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -26,7 +26,7 @@ describe :net_ftp_puttextfile, :shared =&gt; true do
     @ftp.last_response.should == &quot;200 OK, Data received. (STOR text)\n&quot;
   end
   
-  it &quot;sends the contents of the passed local_file, using \\r\\n as the newline seperator&quot; do
+  it &quot;sends the contents of the passed local_file, using \\r\\n as the newline separator&quot; do
     @ftp.send(@method, @local_fixture_file, &quot;text&quot;)
     
     remote_lines = File.readlines(@remote_tmp_file)</diff>
      <filename>library/net/ftp/shared/puttextfile.rb</filename>
    </modified>
    <modified>
      <diff>@@ -15,8 +15,8 @@ describe :net_httpheader_set_form_data, :shared =&gt; true do
     end
   end
 
-  describe &quot;when passed params, seperator&quot; do
-    it &quot;sets self's body based on the passed form parameters and the passed seperator&quot; do
+  describe &quot;when passed params, separator&quot; do
+    it &quot;sets self's body based on the passed form parameters and the passed separator&quot; do
       @headers.send(@method, {&quot;cmd&quot; =&gt; &quot;search&quot;, &quot;q&quot; =&gt; &quot;ruby&quot;, &quot;max&quot; =&gt; &quot;50&quot;}, &quot;&amp;&quot;)
       @headers.body.split(&quot;&amp;&quot;).should == [&quot;max=50&quot;, &quot;cmd=search&quot;, &quot;q=ruby&quot;]
 </diff>
      <filename>library/net/http/httpheader/shared/set_form_data.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,12 +1,12 @@
 require File.dirname(__FILE__) + '/../../spec_helper'
 require &quot;stringio&quot;
 
-describe &quot;StringIO#gets when passed [seperator]&quot; do
+describe &quot;StringIO#gets when passed [separator]&quot; do
   before(:each) do
     @io = StringIO.new(&quot;this&gt;is&gt;an&gt;example&quot;)
   end
 
-  it &quot;returns the data read till the next occurence of the passed seperator&quot; do
+  it &quot;returns the data read till the next occurence of the passed separator&quot; do
     @io.gets(&quot;&gt;&quot;).should == &quot;this&gt;&quot;
     @io.gets(&quot;&gt;&quot;).should == &quot;is&gt;&quot;
     @io.gets(&quot;&gt;&quot;).should == &quot;an&gt;&quot;
@@ -37,7 +37,7 @@ describe &quot;StringIO#gets when passed [seperator]&quot; do
     @io.lineno.should eql(3)
   end
   
-  it &quot;returns the next paragraph when the passed seperator is an empty String&quot; do
+  it &quot;returns the next paragraph when the passed separator is an empty String&quot; do
     io = StringIO.new(&quot;this is\n\nan example&quot;)
     io.gets(&quot;&quot;).should == &quot;this is\n&quot;
     io.gets(&quot;&quot;).should == &quot;an example&quot;
@@ -49,7 +49,7 @@ describe &quot;StringIO#gets when passed [seperator]&quot; do
     io.gets(nil).should == &quot;is\n\nan example&quot;
   end
 
-  it &quot;tries to convert the passed seperator to a String using #to_str&quot; do
+  it &quot;tries to convert the passed separator to a String using #to_str&quot; do
     obj = mock('to_str')
     obj.should_receive(:to_str).and_return(&quot;&gt;&quot;)
     @io.gets(obj).should == &quot;this&gt;&quot;</diff>
      <filename>library/stringio/gets_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -26,7 +26,7 @@ describe &quot;StringIO#puts when passed [Array, ...]&quot; do
     @io.string.should == &quot;5\n[...]\n&quot;
   end
 
-  it &quot;does not honor the global output record seperator $\\&quot; do
+  it &quot;does not honor the global output record separator $\\&quot; do
     begin
       old_rs, $\ = $\, &quot;test&quot;
       @io.puts([1, 2, 3, 4])
@@ -56,7 +56,7 @@ describe &quot;StringIO#puts when passed [Object, ...]&quot; do
     @io = StringIO.new
   end
 
-  it &quot;does not honor the global output record seperator $\\&quot; do
+  it &quot;does not honor the global output record separator $\\&quot; do
     begin
       old_rs, $\ = $\, &quot;test&quot;
       @io.puts(1, 2, 3, 4)
@@ -100,7 +100,7 @@ describe &quot;StringIO#puts when passed no arguments&quot; do
     @io.string.should == &quot;\n&quot;
   end
   
-  it &quot;does not honor the global output record seperator $\\&quot; do
+  it &quot;does not honor the global output record separator $\\&quot; do
     begin
       old_rs, $\ = $\, &quot;test&quot;
       @io.puts</diff>
      <filename>library/stringio/puts_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,12 +2,12 @@ require File.dirname(__FILE__) + '/../../spec_helper'
 require File.dirname(__FILE__) + '/fixtures/classes'
 
 
-describe &quot;StringIO#readline when passed [seperator]&quot; do
+describe &quot;StringIO#readline when passed [separator]&quot; do
   before(:each) do
     @io = StringIO.new(&quot;this&gt;is&gt;an&gt;example&quot;)
   end
 
-  it &quot;returns the data read till the next occurence of the passed seperator&quot; do
+  it &quot;returns the data read till the next occurence of the passed separator&quot; do
     @io.readline(&quot;&gt;&quot;).should == &quot;this&gt;&quot;
     @io.readline(&quot;&gt;&quot;).should == &quot;is&gt;&quot;
     @io.readline(&quot;&gt;&quot;).should == &quot;an&gt;&quot;
@@ -38,7 +38,7 @@ describe &quot;StringIO#readline when passed [seperator]&quot; do
     @io.lineno.should eql(3)
   end
   
-  it &quot;returns the next paragraph when the passed seperator is an empty String&quot; do
+  it &quot;returns the next paragraph when the passed separator is an empty String&quot; do
     io = StringIO.new(&quot;this is\n\nan example&quot;)
     io.readline(&quot;&quot;).should == &quot;this is\n&quot;
     io.readline(&quot;&quot;).should == &quot;an example&quot;
@@ -50,7 +50,7 @@ describe &quot;StringIO#readline when passed [seperator]&quot; do
     io.readline(nil).should == &quot;is\n\nan example&quot;
   end
 
-  it &quot;tries to convert the passed seperator to a String using #to_str&quot; do
+  it &quot;tries to convert the passed separator to a String using #to_str&quot; do
     obj = mock('to_str')
     obj.should_receive(:to_str).and_return(&quot;&gt;&quot;)
     @io.readline(obj).should == &quot;this&gt;&quot;</diff>
      <filename>library/stringio/readline_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,12 +1,12 @@
 require File.dirname(__FILE__) + '/../../spec_helper'
 require File.dirname(__FILE__) + '/fixtures/classes'
 
-describe &quot;StringIO#readlines when passed [seperator]&quot; do
+describe &quot;StringIO#readlines when passed [separator]&quot; do
   before(:each) do
     @io = StringIO.new(&quot;this&gt;is&gt;an&gt;example&quot;)
   end
 
-  it &quot;returns an Array containing lines based on the passed seperator&quot; do
+  it &quot;returns an Array containing lines based on the passed separator&quot; do
     @io.readlines(&quot;&gt;&quot;).should == [&quot;this&gt;&quot;, &quot;is&gt;&quot;, &quot;an&gt;&quot;, &quot;example&quot;]
   end
 
@@ -26,7 +26,7 @@ describe &quot;StringIO#readlines when passed [seperator]&quot; do
     $_.should == &quot;test&quot;
   end
 
-  it &quot;returns an Array containing all paragraphs when the passed seperator is an empty String&quot; do
+  it &quot;returns an Array containing all paragraphs when the passed separator is an empty String&quot; do
     io = StringIO.new(&quot;this is\n\nan example&quot;)
     io.readlines(&quot;&quot;).should == [&quot;this is\n&quot;, &quot;an example&quot;]
   end
@@ -37,7 +37,7 @@ describe &quot;StringIO#readlines when passed [seperator]&quot; do
     io.readlines(nil).should == [&quot;is\n\nan example&quot;]
   end
 
-  it &quot;tries to convert the passed seperator to a String using #to_str&quot; do
+  it &quot;tries to convert the passed separator to a String using #to_str&quot; do
     obj = mock('to_str')
     obj.stub!(:to_str).and_return(&quot;&gt;&quot;)
     @io.readlines(obj).should == [&quot;this&gt;&quot;, &quot;is&gt;&quot;, &quot;an&gt;&quot;, &quot;example&quot;]</diff>
      <filename>library/stringio/readlines_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@ describe :stringio_each_separator, :shared =&gt; true do
     @io = StringIO.new(&quot;a b c d e\n1 2 3 4 5&quot;)
   end
 
-  it &quot;uses the passed argument as the line seperator&quot; do
+  it &quot;uses the passed argument as the line separator&quot; do
     seen = []
     @io.send(@method, &quot; &quot;) {|s| seen &lt;&lt; s}
     seen.should == [&quot;a &quot;, &quot;b &quot;, &quot;c &quot;, &quot;d &quot;, &quot;e\n1 &quot;, &quot;2 &quot;, &quot;3 &quot;, &quot;4 &quot;, &quot;5&quot;]
@@ -19,7 +19,7 @@ describe :stringio_each_separator, :shared =&gt; true do
     @io.send(@method) {|l| l }.should equal(@io)
   end
 
-  it &quot;tries to convert the passed seperator to a String using #to_str&quot; do
+  it &quot;tries to convert the passed separator to a String using #to_str&quot; do
     obj = mock(&quot;to_str&quot;)
     obj.stub!(:to_str).and_return(&quot; &quot;)
 
@@ -28,7 +28,7 @@ describe :stringio_each_separator, :shared =&gt; true do
     seen.should == [&quot;a &quot;, &quot;b &quot;, &quot;c &quot;, &quot;d &quot;, &quot;e\n1 &quot;, &quot;2 &quot;, &quot;3 &quot;, &quot;4 &quot;, &quot;5&quot;]
   end
 
-  it &quot;yields self's content starting from the current position when the passed seperator is nil&quot; do
+  it &quot;yields self's content starting from the current position when the passed separator is nil&quot; do
     seen = []
     io = StringIO.new(&quot;1 2 1 2 1 2&quot;)
     io.pos = 2
@@ -36,7 +36,7 @@ describe :stringio_each_separator, :shared =&gt; true do
     seen.should == [&quot;2 1 2 1 2&quot;]
   end
 
-  it &quot;yields each paragraph when passed an empty String as seperator&quot; do
+  it &quot;yields each paragraph when passed an empty String as separator&quot; do
     seen = []
     io = StringIO.new(&quot;para1\n\npara2\n\n\npara3&quot;)
     io.send(@method, &quot;&quot;) {|s| seen &lt;&lt; s}
@@ -68,7 +68,7 @@ describe :stringio_each_no_arguments, :shared =&gt; true do
     $_.should == &quot;test&quot;
   end
 
-  it &quot;uses $/ as the default line seperator&quot; do
+  it &quot;uses $/ as the default line separator&quot; do
     seen = []
     begin
       old_rs, $/ = $/, &quot; &quot;</diff>
      <filename>library/stringio/shared/each.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>7311b41678bf069d6f1fed87b1bbc9a5f5c79143</id>
    </parent>
  </parents>
  <author>
    <name>Daniel Luz</name>
    <email>dev@mernen.com</email>
  </author>
  <url>http://github.com/rubyspec/rubyspec/commit/b997ef81fd13ebee7fd8fe15d1922217b6efffa3</url>
  <id>b997ef81fd13ebee7fd8fe15d1922217b6efffa3</id>
  <committed-date>2009-02-01T11:10:46-08:00</committed-date>
  <authored-date>2009-02-01T11:10:46-08:00</authored-date>
  <message>More spelling fixes.</message>
  <tree>61af495bfaaab89a711bf3b4459d177fa6826194</tree>
  <committer>
    <name>Daniel Luz</name>
    <email>dev@mernen.com</email>
  </committer>
</commit>
