diff options
author | Jon Moss <maclover7@users.noreply.github.com> | 2016-04-30 21:23:41 -0400 |
---|---|---|
committer | Jon Moss <maclover7@users.noreply.github.com> | 2016-04-30 21:23:41 -0400 |
commit | 46e0666bfa502f207b8964c9d32ca01420a80a59 (patch) | |
tree | 808c6042b157ba212e89e2de1bff081dddf6c706 | |
parent | 285292946a18aaf90e00171a762ce57647828751 (diff) | |
parent | 0ae20627d5c65b259354b587cdcd1b67d64092ce (diff) | |
download | rails-46e0666bfa502f207b8964c9d32ca01420a80a59.tar.gz rails-46e0666bfa502f207b8964c9d32ca01420a80a59.tar.bz2 rails-46e0666bfa502f207b8964c9d32ca01420a80a59.zip |
Merge pull request #24801 from y-yagi/fix_incorrect_module_name
fix incorrect module name [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 56a0767131..31095c7c94 100644 --- a/guides/source/api_app.md +++ b/guides/source/api_app.md @@ -409,7 +409,7 @@ Some common modules you might want to add: and translation methods. - `ActionController::HttpAuthentication::Basic` (or `Digest` or `Token`): Support for basic, digest or token HTTP authentication. -- `AbstractController::Layouts`: Support for layouts when rendering. +- `ActionView::Layouts`: Support for layouts when rendering. - `ActionController::MimeResponds`: Support for `respond_to`. - `ActionController::Cookies`: Support for `cookies`, which includes support for signed and encrypted cookies. This requires the cookies middleware. |