質問編集履歴

1

スペルミス

2019/09/30 06:59

投稿

ryutarokun
ryutarokun

スコア12

test CHANGED
File without changes
test CHANGED
@@ -12,9 +12,9 @@
12
12
 
13
13
  root to: 'memos#index'
14
14
 
15
- get 'memoms', to: 'memos#index'
15
+ get 'memos', to: 'memos#index'
16
16
 
17
- get 'memoms/:id', to: 'memos#show'
17
+ get 'memos/:id', to: 'memos#show'
18
18
 
19
19
  end
20
20
 
@@ -34,9 +34,9 @@
34
34
 
35
35
  root GET / memos#index
36
36
 
37
- memoms GET /memoms(.:format) memos#index
37
+ memos GET /memos(.:format) memos#index
38
38
 
39
- GET /memoms/:id(.:format) memos#show
39
+ GET /memos/:id(.:format) memos#show
40
40
 
41
41
  ```
42
42
 
@@ -44,7 +44,7 @@
44
44
 
45
45
  想定していたshowのルーティングは以下なのですが、
46
46
 
47
- `memo GET /memoms/:id(.:format) memos#show`
47
+ `memo GET /memos/:id(.:format) memos#show`
48
48
 
49
49
 
50
50