回答編集履歴
1
追記
test
CHANGED
@@ -1 +1,21 @@
|
|
1
1
|
<li></li>が正しくペアになっていないようにみえます。
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
追記
|
6
|
+
|
7
|
+
```
|
8
|
+
|
9
|
+
<% @comments.each do |comment| %>
|
10
|
+
|
11
|
+
<li class="comments_list">
|
12
|
+
|
13
|
+
<%= comment.text %>
|
14
|
+
|
15
|
+
<%= link_to comment.user.name, root_path, class: :comment_user %>
|
16
|
+
|
17
|
+
</li>
|
18
|
+
|
19
|
+
<% end %>
|
20
|
+
|
21
|
+
```
|