回答編集履歴
2
誤字の訂正
answer
CHANGED
@@ -8,7 +8,7 @@
|
|
8
8
|
%h1 #{articles.name}
|
9
9
|
- articles.items.each do |items|
|
10
10
|
%h2
|
11
|
-
= link_to
|
11
|
+
= link_to items.title, items.url
|
12
12
|
```
|
13
13
|
|
14
14
|
data.articles.articlesとすべき所を、data.articlesとしていることで数時間無駄にしました。
|
1
誤字の訂正
answer
CHANGED
@@ -8,7 +8,7 @@
|
|
8
8
|
%h1 #{articles.name}
|
9
9
|
- articles.items.each do |items|
|
10
10
|
%h2
|
11
|
-
= link_to times.title, times.url
|
11
|
+
= link_to times.title, times.url
|
12
12
|
```
|
13
13
|
|
14
14
|
data.articles.articlesとすべき所を、data.articlesとしていることで数時間無駄にしました。
|