You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sites/curriculum/setting_the_default_page.step
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,7 @@ explanation {
51
51
At the terminal type `rake routes`. You should get something that
52
52
looks like this:
53
53
54
+
````
54
55
$ rake routes
55
56
56
57
votes GET /votes(.:format) votes#index
@@ -68,7 +69,7 @@ explanation {
68
69
PUT /topics/:id(.:format) topics#update
69
70
DELETE /topics/:id(.:format) topics#destroy
70
71
root / topics#index
71
-
72
+
````
72
73
This shows all the URLs your application responds to. The code that starts with colons are variables so :id means the id number of the record. The code in parenthesis is optional.
0 commit comments