summaryrefslogtreecommitdiff
path: root/spec/ruby/core/file/reopen_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/file/reopen_spec.rb')
-rw-r--r--spec/ruby/core/file/reopen_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/file/reopen_spec.rb b/spec/ruby/core/file/reopen_spec.rb
index 2d79129320..858d424c67 100644
--- a/spec/ruby/core/file/reopen_spec.rb
+++ b/spec/ruby/core/file/reopen_spec.rb
@@ -25,7 +25,7 @@ describe "File#reopen" do
@file.read.should == @content_b
end
- it "calls #to_path to convern an Object" do
+ it "calls #to_path to convert an Object" do
@file = File.new(@name_a).reopen(mock_to_path(@name_b), "r")
@file.read.should == @content_b
end