Skip to content

Commit e1646f5

Browse files
committed
Fix route typo on job board crud page
1 parent 6c983c2 commit e1646f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sites/en/job-board/crud_and_resourceful_routing.step

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ MARKDOWN
1616
discussion_box "CRUD", "Talk through the different uses for the HTTP verbs. What is their general purpose, and what are we specifically using them for??"
1717

1818
message <<-MARKDOWN
19-
To have a useful app, we need to be able to create job postings, see them all and their details, change them, and delete them. The way that Rails wants us to do this is by following RESTful routing conventions, which are perfectly encapsulated by the output of `resource :jobs` in our routes.rb file.
19+
To have a useful app, we need to be able to create job postings, see them all and their details, change them, and delete them. The way that Rails wants us to do this is by following RESTful routing conventions, which are perfectly encapsulated by the output of `resources :jobs` in our routes.rb file.
2020

2121
In Rails we work with seven main verbs, which map to different CRUD actions and controller actions:
2222

0 commit comments

Comments
 (0)