brug-be / railsgirls_guide

New Rails Girls guide
http://brug-be.github.io/railsgirls_guide/
3 stars 5 forks source link

missing skull tag in section "Adding a DB" #32

Closed toch closed 7 years ago

toch commented 8 years ago

in the code snippet

<ul class="list-group">
  <% @hobbies.each_with_index do |hobby, i| %>
    <li class="list-group-item <% i < 3 ? '' : 'hide' %>">
      <%= hobby.name %>
    </li>
  <% end %>
</ul>

it should be a skull tag for <li class="list-group-item <%= i < 3 ? '' : 'hide' %>">