aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/file/chmod_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/file/chmod_spec.rb')
-rw-r--r--spec/ruby/core/file/chmod_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/file/chmod_spec.rb b/spec/ruby/core/file/chmod_spec.rb
index 86171691f6..5ca15c9748 100644
--- a/spec/ruby/core/file/chmod_spec.rb
+++ b/spec/ruby/core/file/chmod_spec.rb
@@ -105,7 +105,7 @@ describe "File.chmod" do
File.chmod(0, mock_to_path(@file))
end
- it "throws a TypeError if the given path is not coercable into a string" do
+ it "throws a TypeError if the given path is not coercible into a string" do
-> { File.chmod(0, []) }.should raise_error(TypeError)
end