aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/layouts_and_rendering.md
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2013-12-14 09:40:11 -0800
committerGuillermo Iguaran <guilleiguaran@gmail.com>2013-12-14 09:40:11 -0800
commitbadcd7bb00a251c23fa59666c0970f8cff0f6cb2 (patch)
treecc83d8b634d5607a6281c4376af46bdac2f8f100 /guides/source/layouts_and_rendering.md
parent068237d02f2ffa1cae6f83ab2dedf821e5455ee5 (diff)
parente10f91000be7e67e7fa6768088f381668d81be05 (diff)
downloadrails-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/layouts_and_rendering.md')
-rw-r--r--guides/source/layouts_and_rendering.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/layouts_and_rendering.md b/guides/source/layouts_and_rendering.md
index f4dab57aa5..c2d9772063 100644
--- a/guides/source/layouts_and_rendering.md
+++ b/guides/source/layouts_and_rendering.md
@@ -404,7 +404,7 @@ class ProductsController < ApplicationController
end
```
-With this declaration, all of the views rendered by the products controller will use `app/views/layouts/inventory.html.erb` as their layout.
+With this declaration, all of the views rendered by the `ProductsController` will use `app/views/layouts/inventory.html.erb` as their layout.
To assign a specific layout for the entire application, use a `layout` declaration in your `ApplicationController` class: