Skip to content

Commit 7388f67

Browse files
Update guides/source/getting_started.md
Co-authored-by: Hartley McGuire <[email protected]>
1 parent f76835c commit 7388f67

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

guides/source/getting_started.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -784,11 +784,8 @@ Update, Delete (CRUD). This translates to 8 typical routes:
784784
record
785785
* Show - Renders a specific record for viewing
786786
* Edit - Renders a form for updating a specific record
787-
* Update (entire resource) - Handles the form submission to update the entire resource.
788-
This is typically triggered by a PUT request, replacing all attributes of the resource.
789-
* Update (specific attributes only) - Handles the form submission to update specific
790-
attributes of the resource. This is typically triggered by a PATCH request,
791-
making partial updates to the resource.
787+
* Update (full) - Handles the edit form submission, handling errors and updating the entire record, and typically triggered by a PUT request.
788+
* Update (partial) - Handles the edit form submission, handling errors and updating specific attributes of the record, and typically triggered by a PATCH request.
792789
* Destroy - Handles deleting a specific record
793790

794791
We can add routes for these CRUD actions with the following:

0 commit comments

Comments
 (0)