diff options
author | Christos Zisopoulos <christos@42linesofcode.com> | 2009-01-26 10:18:58 +0100 |
---|---|---|
committer | Christos Zisopoulos <christos@42linesofcode.com> | 2009-01-26 10:18:58 +0100 |
commit | 72bd7ed807192a0bf8bf60b6525f767bc67b1bde (patch) | |
tree | 38d7e1c933bf519e9ad5819f6b4e1d68ec575e7d /activesupport/lib | |
parent | 37fac27cd9bbd1a0e0a0325a87bbfa70cc7baa47 (diff) | |
download | rails-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/lib')
-rw-r--r-- | activesupport/lib/active_support/core_ext/try.rb | 2 |
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 |