aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorPatrick Toomey <ptoomey3@biasedcoin.com>2019-05-31 08:17:14 -0600
committerPatrick Toomey <ptoomey3@biasedcoin.com>2019-05-31 08:17:14 -0600
commit91f973a803aa1310ffe07bd519671e897fa7e918 (patch)
tree6e143f110df11c3528b157c569f33efa183153b7 /activesupport/lib
parent1d7fa920bf3bb4496f4782de6128029f3ecd4a62 (diff)
downloadrails-91f973a803aa1310ffe07bd519671e897fa7e918.tar.gz
rails-91f973a803aa1310ffe07bd519671e897fa7e918.tar.bz2
rails-91f973a803aa1310ffe07bd519671e897fa7e918.zip
Fix typo
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/parameter_filter.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/parameter_filter.rb b/activesupport/lib/active_support/parameter_filter.rb
index d58941c4e1..7850fb9467 100644
--- a/activesupport/lib/active_support/parameter_filter.rb
+++ b/activesupport/lib/active_support/parameter_filter.rb
@@ -110,7 +110,7 @@ module ActiveSupport
elsif value.is_a?(Hash)
value = call(value, parents, original_params)
elsif value.is_a?(Array)
- # If we don't pop of the current parent it will be duplicated as we
+ # If we don't pop the current parent it will be duplicated as we
# process each array value.
parents.pop if deep_regexps
value = value.map do |v|