diff options
author | Benoit Daloze <[email protected]> | 2021-10-20 21:57:05 +0200 |
---|---|---|
committer | Benoit Daloze <[email protected]> | 2021-10-20 21:57:05 +0200 |
commit | 030b1892d5cc6f4c14b08d67d4ee60c202edc183 (patch) | |
tree | 8868c9c180b2c24d22ba13e00e6137007a60290f /spec/ruby/library/stringio | |
parent | 500ba248826fea96c93dbc76199dd331f0a43eb2 (diff) |
Update to ruby/spec@254c380
Diffstat (limited to 'spec/ruby/library/stringio')
-rw-r--r-- | spec/ruby/library/stringio/ungetbyte_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/library/stringio/ungetbyte_spec.rb b/spec/ruby/library/stringio/ungetbyte_spec.rb index eb1cc55220..2f082acbf6 100644 --- a/spec/ruby/library/stringio/ungetbyte_spec.rb +++ b/spec/ruby/library/stringio/ungetbyte_spec.rb @@ -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 |