Skip to content

Commit d21f9f6

Browse files
committed
Updates
1 parent e42c294 commit d21f9f6

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

aspnetcore/get-started.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,6 @@ The `dotnet watch` command runs the app and opens your default browser to the ap
5050
dotnet watch
5151
```
5252

53-
The browser opens to the app's home page.
54-
5553
Using the app's sidebar navigation, visit the Counter page, where you can select the **:::no-loc text="Click me":::** button to increment the counter.
5654

5755
## Edit a Razor component
@@ -86,7 +84,7 @@ A paragraph element (`<p>`) displays the current count, which is stored in a var
8684
<p role="status">Current count: @currentCount</p>
8785
```
8886

89-
A button (`<button>`) allows the user to increment the counter, which occurs when the button click executes a C# method named `IncrementCount`:
87+
A button (`<button>`) allows the user to increment the counter, which occurs when a button click executes a C# method named `IncrementCount`:
9088

9189
```razor
9290
<button class="btn btn-primary" @onclick="IncrementCount">Click me</button>
@@ -125,7 +123,7 @@ Change the line so that `currentCount` is incremented by a value of ten each tim
125123

126124
Save the file.
127125

128-
As soon as you save the file, the running app is updated automatically because you used the `dotnet watch` command. Go back to the app in the browser with the Counter page loaded and select the **:::no-loc text="Click me":::** button. Witness how the counter now increments by ten.
126+
As soon as you save the file, the running app is updated automatically because you used the `dotnet watch` command. Go back to the app in the browser and select the **:::no-loc text="Click me":::** button in the Counter page. Witness how the counter now increments by ten.
129127

130128
To shut down the app:
131129

0 commit comments

Comments
 (0)