aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/action_controller_overview.md
diff options
context:
space:
mode:
authorArthur Nogueira Neves <arthurnn@gmail.com>2014-04-19 09:46:08 -0500
committerArthur Nogueira Neves <arthurnn@gmail.com>2014-04-19 09:46:08 -0500
commitd39a0d8b82c768e06e78b307786cb4bdda43f5e9 (patch)
treeb5e950763095cb38c8fa41c166785dd7285ec432 /guides/source/action_controller_overview.md
parent92d92b0d8673ff948df64c92de11e5e2bc5af3b7 (diff)
parentfe8a6ba3a12452c9ba9cd4da554e65b08df2155c (diff)
downloadrails-d39a0d8b82c768e06e78b307786cb4bdda43f5e9.tar.gz
rails-d39a0d8b82c768e06e78b307786cb4bdda43f5e9.tar.bz2
rails-d39a0d8b82c768e06e78b307786cb4bdda43f5e9.zip
Merge pull request #14804 from akshay-vishnoi/doc_changes
"subhash" --> "sub-hash"
Diffstat (limited to 'guides/source/action_controller_overview.md')
-rw-r--r--guides/source/action_controller_overview.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_controller_overview.md b/guides/source/action_controller_overview.md
index ee2b00aedb..1735188f27 100644
--- a/guides/source/action_controller_overview.md
+++ b/guides/source/action_controller_overview.md
@@ -260,7 +260,7 @@ used:
params.require(:log_entry).permit!
```
-This will mark the `:log_entry` parameters hash and any subhash of it
+This will mark the `:log_entry` parameters hash and any sub-hash of it
permitted. Extreme care should be taken when using `permit!` as it
will allow all current and future model attributes to be
mass-assigned.