aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-05-27 18:02:30 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-05-27 18:02:30 -0300
commit1f8a9d953d4e305752cbad8487b2c8659ec2c3fa (patch)
tree791d0594dd9fb03fb075e63b5b7f58ed48292960
parentffa20f14792627e3d8bdc407efddd42dd60bf06e (diff)
parent8b7bb52bed7343283fd49af84e749e2e7bbba5ed (diff)
downloadrails-1f8a9d953d4e305752cbad8487b2c8659ec2c3fa.tar.gz
rails-1f8a9d953d4e305752cbad8487b2c8659ec2c3fa.tar.bz2
rails-1f8a9d953d4e305752cbad8487b2c8659ec2c3fa.zip
Merge pull request #20321 from vngrs/fix_indentation_warning
Fix indentation warning on active_support ordered_options
-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