From 41c2621217c02df23265b53ed44b8a7ff551f592 Mon Sep 17 00:00:00 2001 From: Rick Anderson Date: Mon, 4 Dec 2017 18:34:13 -1000 Subject: [PATCH] Update first-web-api.md --- 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 a64e40a7bc..6c9d75d909 100644 --- a/aspnetcore/tutorials/first-web-api.md +++ b/aspnetcore/tutorials/first-web-api.md @@ -60,7 +60,7 @@ A model is an object that represents the data in the app. In this case, the only Add a folder named "Models". In Solution Explorer, right-click the project. Select **Add** > **New Folder**. Name the folder *Models*. -Note: The model classes go anywhere in in the project. The *Models* folder is used by convention for model classes. +Note: The model classes go anywhere in the project. The *Models* folder is used by convention for model classes. Add a `TodoItem` class. Right-click the *Models* folder and select **Add** > **Class**. Name the class `TodoItem` and select **Add**.