Skip to content

Commit fbf8e45

Browse files
authored
Update 4-exercise-run-project.md
Fixed alt text so text ends with period per review feedback for lines 24, 30, 68,
1 parent 342c6b8 commit fbf8e45

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

learn-pr/aspnetcore/build-your-first-aspnet-core-web-app/includes/4-exercise-run-project.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ Run the web app in Visual Studio Code and view in a browser:
2121

2222
1. At the **Select debugger** prompt in the **Command Palette** at the top of the Visual Studio Code UI, select **C#**. At the next prompt, select the default launch configuration (`C#: MyWebApp [Default Configuration]`):
2323

24-
:::image type="content" source="../media/vs-code-select-debugger.png" alt-text="Screenshot of choosing Select debugger in the Command Pallette":::
24+
:::image type="content" source="../media/vs-code-select-debugger.png" alt-text="Screenshot of choosing Select debugger in the Command Pallette.":::
2525

2626
The default browser is launched at `http://localhost:{PORT}`, which displays the app's response. The `{PORT}` placeholder is the random port assigned to the app when the app's project is created. If you need to change the port due to a local port conflict, change the port in the project's *Properties/launchSettings.json* file.
2727

2828
The response displayed in the browser:
2929

30-
:::image type="content" source="../media/browser-displays-hello-world.png" alt-text="Screenshot of a browser displaying the text output":::
30+
:::image type="content" source="../media/browser-displays-hello-world.png" alt-text="Screenshot of a browser displaying the text output.":::
3131

3232
1. Close the browser window.
3333

@@ -65,7 +65,7 @@ Run the web app using the .NET CLI:
6565
6666
1. Open a browser to the URL generated at your own command line output, the app's response `Hello World!` is displayed:
6767
68-
:::image type="content" source="../media/browser-displays-hello-world.png" alt-text="Screenshot of a browser displaying the text output":::
68+
:::image type="content" source="../media/browser-displays-hello-world.png" alt-text="Screenshot of a browser displaying the text output.":::
6969
7070
1. Press Ctrl+C at the command line to shut down the app.
7171
@@ -93,4 +93,4 @@ Request Handling:
9393
9494
Response:
9595
96-
- The response, which in this case is the string "Hello World!", is sent back through the middleware pipeline to Kestrel, which then sends it back to the client.
96+
- The response, which in this case is the string "Hello World!", is sent back through the middleware pipeline to Kestrel, which then sends it back to the client.

0 commit comments

Comments
 (0)