From d463b24f157dcb126c9e47bd7da18f6f25115e97 Mon Sep 17 00:00:00 2001 From: Yves Senn Date: Wed, 2 Sep 2015 19:07:53 +0200 Subject: docs, make `blank?` behavior clear. Closes #21468. [ci skip] --- activesupport/lib/active_support/core_ext/object/blank.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'activesupport/lib/active_support') diff --git a/activesupport/lib/active_support/core_ext/object/blank.rb b/activesupport/lib/active_support/core_ext/object/blank.rb index 38e43478df..548c91638c 100644 --- a/activesupport/lib/active_support/core_ext/object/blank.rb +++ b/activesupport/lib/active_support/core_ext/object/blank.rb @@ -2,11 +2,11 @@ class Object # An object is blank if it's false, empty, or a whitespace string. - # For example, '', ' ', +nil+, [], and {} are all blank. + # For example, +false+, '', ' ', +nil+, [], and {} are all blank. # # This simplifies # - # address.nil? || address.empty? + # !address || address.empty? # # to # -- cgit v1.2.3