Skip to content

Commit 69ce542

Browse files
committed
fixed formatting
1 parent 22ebe4b commit 69ce542

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Instructions/Labs/03-render-api-results-razor-pages.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,11 @@ The API code is run in a **Windows Terminal** or **Command Prompt**. It runs in
9797
9898
The Fruit web app displays the API sample data on the home page. You need to add code to iterate through the sample data returned by the HTTP **GET** operation performed in the code-behind file.
9999
100-
### Add code to render data in a table
100+
### Add code to render data in a table on the home page
101101
102102
1. Select the *Home.razor* file in the **Explorer** pane to open it for editing.
103103
104-
1. Add the following code between the **@* Begin render API data code block *@** and **@* End render API data code block *@** comments.
104+
1. Add the following code between the **@\* Begin render API data code block \*@** and **@\* End render API data code block \*@** comments.
105105
106106
```razor
107107
<tbody>
@@ -168,7 +168,7 @@ The add, edit, and delete operations are each handled on a separate *.razor* pag
168168
169169
1. Select the *Add.razor* file in the **Explorer** pane to open it for editing.
170170
171-
1. Add the following code between the **@* Begin render Add code block *@** and **@* End render Add code block *@** comments.
171+
1. Add the following code between the **@\* Begin render Add code block \*@** and **@\* End render Add code block \*@** comments.
172172
173173
```csharp
174174
@* Data is added using a Razor form, the data model is bound to the form.*@
@@ -221,7 +221,7 @@ In this section you add code to create a form in the *Edit.cshtml* file to enabl
221221
222222
1. Select the *Edit.razor* file in the **Explorer** pane to open it for editing.
223223
224-
1. Add the following code between the **@* Begin render Edit code block *@** and **@* End render Edit code block *@** comments.
224+
1. Add the following code between the **@\* Begin render Edit code block \*@** and **@\* End render Edit code block \*@** comments.
225225
226226
```csharp
227227
@* Data is edited using a Razor form, the data model is bound to the form.*@
@@ -274,7 +274,7 @@ In this section you add code to create a form in the *Delete.cshtml* file to ena
274274
275275
1. Select the *Delete.razor* file in the **Explorer** pane to open it for editing.
276276
277-
1. Add the following code between the **@* Begin render Delete code block *@** and **@* End render Delete code block *@** comments.
277+
1. Add the following code between the **@\* Begin render Delete code block \*@** and **@\* End render Delete code block \*@** comments.
278278
279279
```csharp
280280
@* Data is deleted using a Razor form, the data model is bound to the form.*@

0 commit comments

Comments
 (0)