diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2013-12-14 09:40:11 -0800 |
---|---|---|
committer | Guillermo Iguaran <guilleiguaran@gmail.com> | 2013-12-14 09:40:11 -0800 |
commit | badcd7bb00a251c23fa59666c0970f8cff0f6cb2 (patch) | |
tree | cc83d8b634d5607a6281c4376af46bdac2f8f100 /guides/source/3_2_release_notes.md | |
parent | 068237d02f2ffa1cae6f83ab2dedf821e5455ee5 (diff) | |
parent | e10f91000be7e67e7fa6768088f381668d81be05 (diff) | |
download | rails-badcd7bb00a251c23fa59666c0970f8cff0f6cb2.tar.gz rails-badcd7bb00a251c23fa59666c0970f8cff0f6cb2.tar.bz2 rails-badcd7bb00a251c23fa59666c0970f8cff0f6cb2.zip |
Merge pull request #13325 from kuldeepaggarwal/docs-update
Improved documents [ci skip]
Diffstat (limited to 'guides/source/3_2_release_notes.md')
-rw-r--r-- | guides/source/3_2_release_notes.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/3_2_release_notes.md b/guides/source/3_2_release_notes.md index a9484cf97a..ce811a583b 100644 --- a/guides/source/3_2_release_notes.md +++ b/guides/source/3_2_release_notes.md @@ -238,7 +238,7 @@ Action Pack end ``` - In the example above, Posts controller will no longer automatically look up for a posts layout. If you need this functionality you could either remove `layout "application"` from `ApplicationController` or explicitly set it to `nil` in `PostsController`. + In the example above, `PostsController` will no longer automatically look up for a posts layout. If you need this functionality you could either remove `layout "application"` from `ApplicationController` or explicitly set it to `nil` in `PostsController`. * Deprecated `ActionController::UnknownAction` in favor of `AbstractController::ActionNotFound`. |