aboutsummaryrefslogtreecommitdiffstats
path: root/lib/tempfile.rb
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-12-04 13:50:58 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-12-04 13:50:58 +0000
commit250d10b21f7f4482ab33da91a699c4b542c92b33 (patch)
tree3e9081a626909297e77228689b79685adcd0ee62 /lib/tempfile.rb
parent7b18746587b25ab1438be4b20ea7d59e99db84f1 (diff)
downloadruby-250d10b21f7f4482ab33da91a699c4b542c92b33.tar.gz
fix a typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33942 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/tempfile.rb')
-rw-r--r--lib/tempfile.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tempfile.rb b/lib/tempfile.rb
index ba2a437f79..57fb228c13 100644
--- a/lib/tempfile.rb
+++ b/lib/tempfile.rb
@@ -291,7 +291,7 @@ class Tempfile < DelegateClass(File)
#
# If a block is given, then a Tempfile object will be constructed,
# and the block is run with said object as argument. The Tempfile
- # oject will be automatically closed after the block terminates.
+ # object will be automatically closed after the block terminates.
# The call returns the value of the block.
#
# In any case, all arguments (+*args+) will be passed to Tempfile.new.