回答編集履歴

1

追記

2020/10/26 05:05

投稿

asm
asm

スコア15147

test CHANGED
@@ -1 +1,25 @@
1
1
  `collection`の前にあるスペースが全角なのはだめです。
2
+
3
+
4
+
5
+ ---
6
+
7
+
8
+
9
+
10
+
11
+ ```ruby
12
+
13
+ class UsersController < ApplicationController
14
+
15
+ def show
16
+
17
+ @user = User.find(params[:id])
18
+
19
+ @prototypes = @user.prototypes
20
+
21
+ end
22
+
23
+ end
24
+
25
+ ```