Fix Typo: "I you get..." -> "If you get..." (#11260)

pull/11266/head
Jordan Marano 2019-03-05 00:33:11 +10:00 committed by Luke Latham
parent 18b5c8a0f6
commit de96dfc130
1 changed files with 1 additions and 1 deletions

View File

@ -345,7 +345,7 @@ Add the following `PutTodoItem` method:
`PutTodoItem` is similar to `PostTodoItem`, except it uses HTTP PUT. The response is [204 (No Content)](https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html). According to the HTTP specification, a PUT request requires the client to send the entire updated entity, not just the changes. To support partial updates, use [HTTP PATCH](xref:Microsoft.AspNetCore.Mvc.HttpPatchAttribute).
I you get an error calling `PutTodoItem`, call `GET` to ensure there is a an item in the database.
If you get an error calling `PutTodoItem`, call `GET` to ensure there is a an item in the database.
### Test the PutTodoItem method