diff options
author | Martin Dürst <[email protected]> | 2023-05-13 10:06:24 +0900 |
---|---|---|
committer | Martin Dürst <[email protected]> | 2023-05-13 10:07:00 +0900 |
commit | 30326844c7e0957bf85ac1befd3755cff2848e9f (patch) | |
tree | c69f0d98bab5d719037300b5c9156bd783800b74 /spec/ruby/language | |
parent | 93dd13d97a62fa1af80926e89d0ad9fb4570d539 (diff) |
fix wording of spec description [ci skip]
Diffstat (limited to 'spec/ruby/language')
-rw-r--r-- | spec/ruby/language/source_encoding_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/language/source_encoding_spec.rb b/spec/ruby/language/source_encoding_spec.rb index 19364fc676..7135bc0a70 100644 --- a/spec/ruby/language/source_encoding_spec.rb +++ b/spec/ruby/language/source_encoding_spec.rb @@ -15,7 +15,7 @@ describe "Source files" do end describe "encoded in UTF-16 LE without a BOM" do - it "are parsed because empty as they contain a NUL byte before the encoding comment" do + it "are parsed as empty because they contain a NUL byte before the encoding comment" do ruby_exe(fixture(__FILE__, "utf16-le-nobom.rb"), args: "2>&1").should == "" end end |