diff options
author | Mehmet Emin İNAÇ <mehmetemininac@gmail.com> | 2015-05-27 20:56:33 +0300 |
---|---|---|
committer | Mehmet Emin İNAÇ <mehmetemininac@gmail.com> | 2015-05-27 20:56:33 +0300 |
commit | 8b7bb52bed7343283fd49af84e749e2e7bbba5ed (patch) | |
tree | 0d89aa9b89d163800bd4bc9e469a73c1d44620a5 | |
parent | 4a7bf07f7e88faf52ce3a5abc834d72fce91e2f2 (diff) | |
download | rails-8b7bb52bed7343283fd49af84e749e2e7bbba5ed.tar.gz rails-8b7bb52bed7343283fd49af84e749e2e7bbba5ed.tar.bz2 rails-8b7bb52bed7343283fd49af84e749e2e7bbba5ed.zip |
Fix indentation warning on active_support ordered_options
-rw-r--r-- | activesupport/lib/active_support/ordered_options.rb | 2 |
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 |