2
我有這樣的代碼在我的Rails應用程序:爲什麼我會得到「unexpected_key_end」?
<p id="notice"><%= notice %></p>
<p>
<b>Title:</b>
<%= @debate.title %>
</p>
<p>
Supporting Points:
</p>
<% @debate.supports.each.do |support| %>
<p>
<%= support.body %>
</p>
<% end %>
<p>
Contesting Points:
</p>
<% @debate.contests.each.do |contest| %>
<p>
<%= contest.body %>
</p>
<% end %>
我得到一個錯誤「語法錯誤,意想不到的keyword_end,期待$結束」的最後一行。
怎麼回事?