diff options
author | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2015-09-04 14:27:00 +0900 |
---|---|---|
committer | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2015-09-04 14:38:54 +0900 |
commit | 40c96f7be5059375629e36a5eb8c0aeaa46acd9c (patch) | |
tree | ec45ba387b06feb1eed416b1ee25777cbdf6a4e1 /guides | |
parent | db69045f7df63afc4fda2eab7525a67408456044 (diff) | |
download | rails-40c96f7be5059375629e36a5eb8c0aeaa46acd9c.tar.gz rails-40c96f7be5059375629e36a5eb8c0aeaa46acd9c.tar.bz2 rails-40c96f7be5059375629e36a5eb8c0aeaa46acd9c.zip |
fix module name typo in API app guide [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/api_app.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/api_app.md b/guides/source/api_app.md index 7f1792181e..28727a51bd 100644 --- a/guides/source/api_app.md +++ b/guides/source/api_app.md @@ -394,7 +394,7 @@ Some common modules you might want to add: - `AbstractController::Translation`: Support for the `l` and `t` localization and translation methods. -- `ActionController::HTTPAuthentication::Basic` (or `Digest` or `Token`): Support +- `ActionController::HttpAuthentication::Basic` (or `Digest` or `Token`): Support for basic, digest or token HTTP authentication. - `AbstractController::Layouts`: Support for layouts when rendering. - `ActionController::MimeResponds`: Support for `respond_to`. |