aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Mathieu <42@dmathieu.com>2013-12-18 02:38:18 -0800
committerDamien Mathieu <42@dmathieu.com>2013-12-18 02:38:18 -0800
commitaaea0d8813a621da6d849a2b53dddba14593e630 (patch)
treecf35006b797dc826d9fc4ea8cf36984b9acfa1c8
parent8a6d40ffc30ec311b55d14c482b15ba8cadcaa04 (diff)
parent0add074d37667e638004ef2bec8d0e5d326c1311 (diff)
downloadrails-aaea0d8813a621da6d849a2b53dddba14593e630.tar.gz
rails-aaea0d8813a621da6d849a2b53dddba14593e630.tar.bz2
rails-aaea0d8813a621da6d849a2b53dddba14593e630.zip
Merge pull request #13373 from sbagdat/patch-1
Fix typo [ci skip]
-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 4252b5ee9a..8ea3859475 100644
--- a/guides/source/action_controller_overview.md
+++ b/guides/source/action_controller_overview.md
@@ -794,7 +794,7 @@ class AdminsController < ApplicationController
end
```
-With this in place, you can create namespaced controllers that inherit from `AdminController`. The filter will thus be run for all actions in those controllers, protecting them with HTTP basic authentication.
+With this in place, you can create namespaced controllers that inherit from `AdminsController`. The filter will thus be run for all actions in those controllers, protecting them with HTTP basic authentication.
### HTTP Digest Authentication