diff options
author | Sıtkı Bağdat <sbagdat@gmail.com> | 2013-12-18 12:34:45 +0200 |
---|---|---|
committer | Sıtkı Bağdat <sbagdat@gmail.com> | 2013-12-18 12:34:45 +0200 |
commit | 0add074d37667e638004ef2bec8d0e5d326c1311 (patch) | |
tree | cf35006b797dc826d9fc4ea8cf36984b9acfa1c8 | |
parent | 8a6d40ffc30ec311b55d14c482b15ba8cadcaa04 (diff) | |
download | rails-0add074d37667e638004ef2bec8d0e5d326c1311.tar.gz rails-0add074d37667e638004ef2bec8d0e5d326c1311.tar.bz2 rails-0add074d37667e638004ef2bec8d0e5d326c1311.zip |
Fix typo [ci skip]
-rw-r--r-- | guides/source/action_controller_overview.md | 2 |
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 |