From de96dfc130e7a1a067122755e561fcada0e88bf0 Mon Sep 17 00:00:00 2001 From: Jordan Marano Date: Tue, 5 Mar 2019 00:33:11 +1000 Subject: [PATCH] Fix Typo: "I you get..." -> "If you get..." (#11260) --- aspnetcore/tutorials/first-web-api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/tutorials/first-web-api.md b/aspnetcore/tutorials/first-web-api.md index e742c119be..a1060b7f24 100644 --- a/aspnetcore/tutorials/first-web-api.md +++ b/aspnetcore/tutorials/first-web-api.md @@ -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