diff options
author | Gosha Arinich <me@goshakkk.name> | 2013-01-07 11:47:27 +0300 |
---|---|---|
committer | Gosha Arinich <me@goshakkk.name> | 2013-01-07 11:47:27 +0300 |
commit | 0acf92184dab8d97db7d447bea8e3c6097b33722 (patch) | |
tree | ee37ef9f2038a578ea789bdf64e10381e6da3697 /actionpack | |
parent | 09626e2ebaed9852a26b5572e3d27f4a154d6a05 (diff) | |
download | rails-0acf92184dab8d97db7d447bea8e3c6097b33722.tar.gz rails-0acf92184dab8d97db7d447bea8e3c6097b33722.tar.bz2 rails-0acf92184dab8d97db7d447bea8e3c6097b33722.zip |
prefer american spelling of 'behavior'
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_controller/metal/strong_parameters.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/metal/strong_parameters.rb b/actionpack/lib/action_controller/metal/strong_parameters.rb index 8faa5f8a13..1fec0b7b19 100644 --- a/actionpack/lib/action_controller/metal/strong_parameters.rb +++ b/actionpack/lib/action_controller/metal/strong_parameters.rb @@ -45,7 +45,7 @@ module ActionController # # => #<Person id: 1, name: "Francesco", age: 22, role: "user"> # # It provides a +permit_all_parameters+ option that controls the top-level - # behaviour of new instances. If it's +true+, all the parameters will be + # behavior of new instances. If it's +true+, all the parameters will be # permitted by default. The default value for +permit_all_parameters+ # option is +false+. # |