aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/action_controller_overview.md
diff options
context:
space:
mode:
authorAkshay Vishnoi <akshay.vishnoi@vinsol.com>2014-04-19 04:03:43 +0530
committerAkshay Vishnoi <akshay.vishnoi@vinsol.com>2014-04-19 04:03:43 +0530
commitfe8a6ba3a12452c9ba9cd4da554e65b08df2155c (patch)
tree3cda4b914e3674eb8316c34ec973d8cc5a75e802 /guides/source/action_controller_overview.md
parent5f72fc6af8ad19df2b4e4f442b9ab17dd6846f46 (diff)
downloadrails-fe8a6ba3a12452c9ba9cd4da554e65b08df2155c.tar.gz
rails-fe8a6ba3a12452c9ba9cd4da554e65b08df2155c.tar.bz2
rails-fe8a6ba3a12452c9ba9cd4da554e65b08df2155c.zip
"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.