diff options
Diffstat (limited to 'spec/ruby/library/stringio/ungetbyte_spec.rb')
| -rw-r--r-- | spec/ruby/library/stringio/ungetbyte_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/library/stringio/ungetbyte_spec.rb b/spec/ruby/library/stringio/ungetbyte_spec.rb index eb1cc55220..87b27b837e 100644 --- a/spec/ruby/library/stringio/ungetbyte_spec.rb +++ b/spec/ruby/library/stringio/ungetbyte_spec.rb @@ -12,7 +12,7 @@ describe "StringIO#ungetbyte" do io.string.should == 'Shis is a simple string.' end - it "ungets a single byte from a string in the middle of a multibyte characte" do + it "ungets a single byte from a string in the middle of a multibyte character" do str = "\u01a9" io = StringIO.new(str) b = io.getbyte @@ -30,7 +30,7 @@ describe "StringIO#ungetbyte" do io.string.should == 'Shis is a simple string.' end - it "ungets the bytes of a string if given a string as an arugment" do + it "ungets the bytes of a string if given a string as an argument" do str = "\u01a9" io = StringIO.new(str) b = io.getbyte |
