aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/object/blank.rb
diff options
context:
space:
mode:
authorSebastian Martinez <sebastian@wyeworks.com>2011-05-23 21:00:45 -0300
committerSebastian Martinez <sebastian@wyeworks.com>2011-05-23 21:00:45 -0300
commitdd6c3676af3fa6019c53a59f62c4fd14966be728 (patch)
tree99cd59388171b24f702fadecff2ba33c6eec7afd /activesupport/lib/active_support/core_ext/object/blank.rb
parent0034b7822d6132f5945b0514a5391d18e52aa4b6 (diff)
downloadrails-dd6c3676af3fa6019c53a59f62c4fd14966be728.tar.gz
rails-dd6c3676af3fa6019c53a59f62c4fd14966be728.tar.bz2
rails-dd6c3676af3fa6019c53a59f62c4fd14966be728.zip
Remove extra white spaces on ActiveSupport docs.
Diffstat (limited to 'activesupport/lib/active_support/core_ext/object/blank.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/object/blank.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/object/blank.rb b/activesupport/lib/active_support/core_ext/object/blank.rb
index fb5abf2aa5..8221dc4abe 100644
--- a/activesupport/lib/active_support/core_ext/object/blank.rb
+++ b/activesupport/lib/active_support/core_ext/object/blank.rb
@@ -22,7 +22,7 @@ class Object
# <tt>object.presence</tt> is equivalent to <tt>object.present? ? object : nil</tt>.
#
# This is handy for any representation of objects where blank is the same
- # as not present at all. For example, this simplifies a common check for
+ # as not present at all. For example, this simplifies a common check for
# HTTP POST/query parameters:
#
# state = params[:state] if params[:state].present?