aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorChristos Zisopoulos <christos@42linesofcode.com>2009-01-26 10:18:58 +0100
committerChristos Zisopoulos <christos@42linesofcode.com>2009-01-26 10:18:58 +0100
commit72bd7ed807192a0bf8bf60b6525f767bc67b1bde (patch)
tree38d7e1c933bf519e9ad5819f6b4e1d68ec575e7d /activesupport
parent37fac27cd9bbd1a0e0a0325a87bbfa70cc7baa47 (diff)
downloadrails-72bd7ed807192a0bf8bf60b6525f767bc67b1bde.tar.gz
rails-72bd7ed807192a0bf8bf60b6525f767bc67b1bde.tar.bz2
rails-72bd7ed807192a0bf8bf60b6525f767bc67b1bde.zip
Updated Object#try doc to match lifo's "no code change" revert c9b8a26ba1cd8277580fc2a554fe3a67a52f1756
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/core_ext/try.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/try.rb b/activesupport/lib/active_support/core_ext/try.rb
index 5cee97fd0d..54a38c5189 100644
--- a/activesupport/lib/active_support/core_ext/try.rb
+++ b/activesupport/lib/active_support/core_ext/try.rb
@@ -1,5 +1,5 @@
class Object
- # Invokes the method identified by +symbol+, passing it any arguments
+ # Invokes the method identified by the symbol +method+, passing it any arguments
# and/or the block specified, just like the regular Ruby <tt>Object#send</tt> does.
#
# *Unlike* that method however, a +NoMethodError+ exception will *not* be raised