diff options
author | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2015-03-04 13:37:53 +0900 |
---|---|---|
committer | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2015-03-04 13:37:53 +0900 |
commit | 2449258dc46cf43a2b2d093e89aabda586646c05 (patch) | |
tree | 1007a9cec595a2f17a87aef977c39ee7fb2f9750 | |
parent | d596326b399b51573a2ceeae6b7309dee9344026 (diff) | |
download | rails-2449258dc46cf43a2b2d093e89aabda586646c05.tar.gz rails-2449258dc46cf43a2b2d093e89aabda586646c05.tar.bz2 rails-2449258dc46cf43a2b2d093e89aabda586646c05.zip |
fix spelling, `ERb` -> `ERB` [ci skip]
-rw-r--r-- | guides/source/layouts_and_rendering.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/layouts_and_rendering.md b/guides/source/layouts_and_rendering.md index 5c7fad09ed..54db23bb32 100644 --- a/guides/source/layouts_and_rendering.md +++ b/guides/source/layouts_and_rendering.md @@ -589,7 +589,7 @@ The lookup order for a `admin/products#index` action will be: * `app/views/admin/` * `app/views/application/` -This makes `app/views/application/` a great place for your shared partials, which can then be rendered in your ERb as such: +This makes `app/views/application/` a great place for your shared partials, which can then be rendered in your ERB as such: ```erb <%# app/views/admin/products/index.html.erb %> |