diff options
author | Kasper Timm Hansen <kaspth@gmail.com> | 2015-09-04 09:37:59 +0200 |
---|---|---|
committer | Kasper Timm Hansen <kaspth@gmail.com> | 2015-09-04 09:37:59 +0200 |
commit | 01598e955574a8bb4d85fccbfa40adf28f7dd3c0 (patch) | |
tree | ec45ba387b06feb1eed416b1ee25777cbdf6a4e1 | |
parent | db69045f7df63afc4fda2eab7525a67408456044 (diff) | |
parent | 40c96f7be5059375629e36a5eb8c0aeaa46acd9c (diff) | |
download | rails-01598e955574a8bb4d85fccbfa40adf28f7dd3c0.tar.gz rails-01598e955574a8bb4d85fccbfa40adf28f7dd3c0.tar.bz2 rails-01598e955574a8bb4d85fccbfa40adf28f7dd3c0.zip |
Merge pull request #21492 from y-yagi/fix_module_name_typo_in_api_app_guide
fix module name typo in API app guide [ci skip]
-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`. |