mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Update a tag for missing <dl> in guides
The errors below heppens in executing `bundle exec rake guides:validate`. ``` $ bundle exec rake guides:generate:html (snip) $ bundle exec rake guides:validate (snip) ./output/active_record_querying.html has 57 validation error(s): ERROR; line 55: Element “dt” not allowed as child of element “div” in this context. (Suppressing further errors from this subtree.) (snip) ```
This commit is contained in:
parent
c764f675ac
commit
53eafca8e9
1 changed files with 2 additions and 2 deletions
|
@ -52,7 +52,7 @@
|
||||||
<a href="index.html" id="guidesMenu" class="guides-index-item nav-item">Guides Index</a>
|
<a href="index.html" id="guidesMenu" class="guides-index-item nav-item">Guides Index</a>
|
||||||
<div id="guides" class="clearfix" style="display: none;">
|
<div id="guides" class="clearfix" style="display: none;">
|
||||||
<hr />
|
<hr />
|
||||||
<div class="guides-section-container">
|
<dl class="guides-section-container">
|
||||||
<% documents_by_section.each do |section| %>
|
<% documents_by_section.each do |section| %>
|
||||||
<div class="guides-section">
|
<div class="guides-section">
|
||||||
<dt><%= section['name'] %></dt>
|
<dt><%= section['name'] %></dt>
|
||||||
|
@ -61,7 +61,7 @@
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</dl>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li><a class="nav-item" href="contributing_to_ruby_on_rails.html">Contribute</a></li>
|
<li><a class="nav-item" href="contributing_to_ruby_on_rails.html">Contribute</a></li>
|
||||||
|
|
Loading…
Reference in a new issue