Skip to content

Commit 5c6643c

Browse files
committed
Several quick fixes
1 parent 7a270e6 commit 5c6643c

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

articles/aks/tutorial-kubernetes-prepare-acr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ To get the login server address, use the [az acr list][az-acr-list] command and
7878
az acr list --resource-group myResourceGroup --query "[].{acrLoginServer:loginServer}" --output table
7979
```
8080

81-
Now, tag your local *azure-vote-front* image with the *acrloginServer* address of the container registry. To indicate the image version, add *:v1* to the end of the image name:
81+
Now, tag your local *azure-vote-front* image with the *acrLoginServer* address of the container registry. To indicate the image version, add *:v1* to the end of the image name:
8282

8383
```console
8484
docker tag azure-vote-front <acrLoginServer>/azure-vote-front:v1

articles/dev-spaces/quickstart-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ In this guide, you will learn how to:
1515
- Iteratively develop code in containers using Visual Studio Code.
1616
- Debug the code in your dev space from Visual Studio Code.
1717

18-
Azure Dev Spaces also allows you debug and iterate using:
18+
Azure Dev Spaces also allows you to debug and iterate using:
1919
- [Node.js and Visual Studio Code](quickstart-nodejs.md)
2020
- [.NET Core and Visual Studio Code](quickstart-netcore.md)
2121
- [.NET Core and Visual Studio](quickstart-netcore-visualstudio.md)

articles/dev-spaces/quickstart-netcore.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ In this guide, you will learn how to:
1515
- Iteratively develop code in containers using Visual Studio Code.
1616
- Debug the code in your dev space from Visual Studio Code.
1717

18-
Azure Dev Spaces also allows you debug and iterate using:
18+
Azure Dev Spaces also allows you to debug and iterate using:
1919
- [Java and Visual Studio Code](quickstart-java.md)
2020
- [Node.js and Visual Studio Code](quickstart-nodejs.md)
2121
- [.NET Core and Visual Studio](quickstart-netcore-visualstudio.md)
@@ -90,13 +90,13 @@ This command prepares your project to run in Azure Dev Spaces by generating a Do
9090
> [!TIP]
9191
> The [Dockerfile and Helm chart](how-dev-spaces-works.md#prepare-your-code) for your project is used by Azure Dev Spaces to build and run your code, but you can modify these files if you want to change how the project is built and ran.
9292
93-
## Build and run code in Kubernetes from Visual Studio
93+
## Build and run code in Kubernetes from Visual Studio Code
9494

9595
Click on the *Debug* icon on the left and click *.NET Core Launch (AZDS)* at the top.
9696

9797
![](media/get-started-netcore/debug-configuration.png)
9898

99-
This command builds and runs your service in Azure Dev Spaces in debugging mode. The *Terminal* window at the bottom shows the build output and URLs for your service running Azure Dev Spaces. The *Debug Console* shows the log output.
99+
This command builds and runs your service in Azure Dev Spaces in debugging mode. The *Terminal* window at the bottom shows the build output and URLs for your service running in Azure Dev Spaces. The *Debug Console* shows the log output.
100100

101101
> [!Note]
102102
> If you don't see any Azure Dev Spaces commands in the *Command Palette*, make sure you have installed the [Visual Studio Code extension for Azure Dev Spaces](https://marketplace.visualstudio.com/items?itemName=azuredevspaces.azds). Also verify you opened the *dev-spaces/samples/dotnetcore/getting-started/webfrontend* directory in Visual Studio Code.

articles/dev-spaces/quickstart-nodejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ In this guide, you will learn how to:
1515
- Iteratively develop code in containers using Visual Studio Code.
1616
- Debug the code in your dev space from Visual Studio Code.
1717

18-
Azure Dev Spaces also allows you debug and iterate using:
18+
Azure Dev Spaces also allows you to debug and iterate using:
1919
- [Java and Visual Studio Code](quickstart-java.md)
2020
- [.NET Core and Visual Studio Code](quickstart-netcore.md)
2121
- [.NET Core and Visual Studio](quickstart-netcore-visualstudio.md)

articles/dev-spaces/quickstart-team-development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ azds space select -n dev/azureuser1 -y
131131
azds space select -n dev/azureuser2 -y
132132
```
133133

134-
The above commands create two child spaces under *dev* named *azureuser1* and *azureuser2*. These two child spaces represent distinct dev spaces for the developers' *azureuser1* and *azureuser2* to use for making changes to the sample application.
134+
The above commands create two child spaces under *dev* named *azureuser1* and *azureuser2*. These two child spaces represent distinct dev spaces for developers *azureuser1* and *azureuser2* to use for making changes to the sample application.
135135

136136
Use the `azds space list` command to list all the dev spaces and confirm *dev/azureuser2* is selected.
137137

0 commit comments

Comments
 (0)