README.md in approval-0.6.0 vs README.md in approval-0.6.1

- old
+ new

@@ -47,11 +47,11 @@ ## Approval Flow ### Make request -You send request, but resources aren't created/updated/destroied. +You send request, but resources aren't created/updated/destroyed. #### :pray: Create ```ruby staff = User.find_or_create_by(email: "staff@example.com") @@ -105,11 +105,11 @@ ### Respond #### :ok_woman: Approve -Then resources are created/updated/destroied, if respond user have approved the request. +Then resources are created/updated/destroyed, if respond user have approved the request. ```ruby admin = User.find_or_create_by(email: "admin@example.com") request = Approval::Request.first @@ -117,10 +117,10 @@ respond.save! # Create/Update/Destroy resources ``` ##### :no_good: Reject -Then resources are not created/updated/destroied, if respond user have rejected the request. +Then resources are not created/updated/destroyed, if respond user have rejected the request. ```ruby admin = User.find_or_create_by(email: "admin@example.com") request = Approval::Request.first