aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/object/try.rb
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2011-04-23 01:11:24 +0200
committerXavier Noria <fxn@hashref.com>2011-04-23 01:11:24 +0200
commitaf1b48926f49226c934995c322ee017239158cf3 (patch)
treea496e072226dc4c16f70b5d74cb7eb800391fa82 /activesupport/lib/active_support/core_ext/object/try.rb
parentf7538808d466b756df15ac3f27ca08370f7a189c (diff)
parentdf70b9dfb23aa05ed7ae7955ff0fb7eec68de9a3 (diff)
downloadrails-af1b48926f49226c934995c322ee017239158cf3.tar.gz
rails-af1b48926f49226c934995c322ee017239158cf3.tar.bz2
rails-af1b48926f49226c934995c322ee017239158cf3.zip
Merge branch 'master' of git://github.com/lifo/docrails
Conflicts: activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
Diffstat (limited to 'activesupport/lib/active_support/core_ext/object/try.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/object/try.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/object/try.rb b/activesupport/lib/active_support/core_ext/object/try.rb
index aedf5c8c82..e77a9da0ec 100644
--- a/activesupport/lib/active_support/core_ext/object/try.rb
+++ b/activesupport/lib/active_support/core_ext/object/try.rb
@@ -35,7 +35,7 @@ class Object
end
class NilClass
- # Instances of +NilClass+ return always +nil+.
+ # Calling +try+ on +nil+ always returns +nil+.
# It becomes specially helpful when navigating through associations that may return +nil+.
#
# === Examples