aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2015-02-15 19:55:24 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2015-02-15 19:55:24 +0900
commitcf7b677defbe7e638b95aed67d97aaf1ac7503a1 (patch)
treef4ec80591ce12757a389b8efe2f717d52a2ab8c3 /guides
parent676d4ae787254e7842834e31204e5b7350261bbd (diff)
downloadrails-cf7b677defbe7e638b95aed67d97aaf1ac7503a1.tar.gz
rails-cf7b677defbe7e638b95aed67d97aaf1ac7503a1.tar.bz2
rails-cf7b677defbe7e638b95aed67d97aaf1ac7503a1.zip
fix syntax error in render partial example [ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/layouts_and_rendering.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/layouts_and_rendering.md b/guides/source/layouts_and_rendering.md
index 69d3f6e86c..b7fc580939 100644
--- a/guides/source/layouts_and_rendering.md
+++ b/guides/source/layouts_and_rendering.md
@@ -1049,7 +1049,7 @@ As you already could see from the previous sections of this guide, `yield` is a
<p>
Name contains: <%= f.text_field :name_contains %>
</p>
- <%= end %>
+ <% end %>
```
* `roles/index.html.erb`
@@ -1059,7 +1059,7 @@ As you already could see from the previous sections of this guide, `yield` is a
<p>
Title contains: <%= f.text_field :title_contains %>
</p>
- <%= end %>
+ <% end %>
```
* `shared/_search_filters.html.erb`