aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorMehmet Emin İNAÇ <mehmetemininac@gmail.com>2015-05-27 20:56:33 +0300
committerMehmet Emin İNAÇ <mehmetemininac@gmail.com>2015-05-27 20:56:33 +0300
commit8b7bb52bed7343283fd49af84e749e2e7bbba5ed (patch)
tree0d89aa9b89d163800bd4bc9e469a73c1d44620a5 /activesupport
parent4a7bf07f7e88faf52ce3a5abc834d72fce91e2f2 (diff)
downloadrails-8b7bb52bed7343283fd49af84e749e2e7bbba5ed.tar.gz
rails-8b7bb52bed7343283fd49af84e749e2e7bbba5ed.tar.bz2
rails-8b7bb52bed7343283fd49af84e749e2e7bbba5ed.zip
Fix indentation warning on active_support ordered_options
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/ordered_options.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/ordered_options.rb b/activesupport/lib/active_support/ordered_options.rb
index ebf2a9bc29..bc0326473d 100644
--- a/activesupport/lib/active_support/ordered_options.rb
+++ b/activesupport/lib/active_support/ordered_options.rb
@@ -37,7 +37,7 @@ module ActiveSupport
fetch(name_string.to_sym).presence || raise(KeyError.new("#{name_string} is blank."))
else
self[name_string]
- end
+ end
end
end