aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorAbdelkader Boudih <terminale@gmail.com>2015-02-15 10:58:49 +0000
committerAbdelkader Boudih <terminale@gmail.com>2015-02-15 10:58:49 +0000
commit66a30dc3225589d8aba6c10fee7bfa68da444e49 (patch)
treef4ec80591ce12757a389b8efe2f717d52a2ab8c3 /guides
parent676d4ae787254e7842834e31204e5b7350261bbd (diff)
parentcf7b677defbe7e638b95aed67d97aaf1ac7503a1 (diff)
downloadrails-66a30dc3225589d8aba6c10fee7bfa68da444e49.tar.gz
rails-66a30dc3225589d8aba6c10fee7bfa68da444e49.tar.bz2
rails-66a30dc3225589d8aba6c10fee7bfa68da444e49.zip
Merge pull request #18945 from y-yagi/layouts_and_rendering_guide
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`