Skip to content

Commit fdae1de

Browse files
committed
fixed some typo
1 parent cf17e7c commit fdae1de

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

articles/app-service/quickstart-arm-template-uiex.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ROBOTS: NOINDEX,NOFOLLOW
1313

1414
# Quickstart: Create App Service app using an ARM template
1515

16-
Get started with [Azure App Service](overview.md) by deploying a app to the cloud using an ARM template (A JSON file that declaratively defines one or more Azure resources and dependencies between the deployed resources. The template can be used to deploy the resources consistently and repeatedly.)Get started with [Azure App Service](overview.md) by deploying a app to the cloud using an <abbr title="A JSON file that declaratively defines one or more Azure The template uses declarative syntax. (In declarative syntax, you describe your intended deployment without writing the sequence of programming commands to create the deployment.)
16+
Get started with [Azure App Service](overview.md) by deploying a app to the cloud using an ARM template (A JSON file that declaratively defines one or more Azure resources and dependencies between the deployed resources. The template can be used to deploy the resources consistently and repeatedly.) and [Azure CLI](/cli/azure/get-started-with-azure-cli) in Cloud Shell. Because you use a free App Service tier, you incur no costs to complete this quickstart. The template uses declarative syntax. (In declarative syntax, you describe your intended deployment without writing the sequence of programming commands to create the deployment.)
1717

1818
If your environment meets the prerequisites and you're familiar with using [ARM templates](../azure-resource-manager/templates/overview.md), select the **Deploy to Azure** button. The template will open in the Azure portal.
1919

@@ -101,7 +101,7 @@ The following table details defaults parameters and their descriptions:
101101
::: zone pivot="platform-windows"
102102
Run the code below to deploy a .NET framework app on Windows using Azure CLI.
103103

104-
Replace \ (Valid characters characters are `a-z`, `0-9`, and `-`.)Replace <abbr title="Valid characters characters are `a-z`, deployment methods (You can also use the Azure portal, Azure PowerShell, and REST API.), see [Deploy templates](../azure-resource-manager/templates/deploy-powershell.md). You can find more [Azure App Service template samples here](https://azure.microsoft.com/resources/templates/?resourceType=Microsoft.Sites).
104+
Replace \<app-name> (Valid characters characters are `a-z`, `0-9`, and `-`.) with a globally unique app name. To learn other deployment methods (You can also use the Azure portal, Azure PowerShell, and REST API.), see [Deploy templates](../azure-resource-manager/templates/deploy-powershell.md). You can find more [Azure App Service template samples here](https://azure.microsoft.com/resources/templates/?resourceType=Microsoft.Sites).
105105

106106
```azurecli-interactive
107107
az group create --name myResourceGroup --location "southcentralus" &&
@@ -126,16 +126,16 @@ az deployment group create --resource-group myResourceGroup --parameters webAppN
126126
<summary>What's the code doing?</summary>
127127
<p>The commands do the following actions:</p>
128128
<ul>
129-
<li>Create a default resource group (A logical container for related Azure resources that you can manage as a unit.).</li>
130-
<li>Create a default App Service plan (The plan that specifies the location, size, and features of the web server farm that hosts your app.).</li>
131-
<li><a href="/cli/azure/webapp#az-webapp-create">Create an App Service app (The representation of your web app, which contains your app code, DNS hostnames, certificates, and related resources.)</a> with the specified name.</li>
129+
<li>Create a default resource group (A logical container for related Azure resources that you can manage as a unit.).</li>
130+
<li>Create a default App Service plan (The plan that specifies the location, size, and features of the web server farm that hosts your app.).</li>
131+
<li><a href="/cli/azure/webapp#az-webapp-create">Create an App Service app (The representation of your web app, which contains your app code, DNS hostnames, certificates, and related resources.)</a> with the specified name.</li>
132132
</ul>
133133
</details>
134134

135135
::: zone pivot="platform-windows"
136136
<details>
137137
<summary>How do I deploy a different language stack?</summary>
138-
To deploy a different language stack, update language parameter (This template is compatible with .NET Core, .NET Framework, PHP, Node.js, and Static HTML apps.) with appropriate values. For Java, see <a href="/azure/app-service/quickstart-java-uiex">Create Java app</a>.
138+
To deploy a different language stack, update language parameter (This template is compatible with .NET Core, .NET Framework, PHP, Node.js, and Static HTML apps.) with appropriate values. For Java, see <a href="/azure/app-service/quickstart-java-uiex">Create Java app</a>.
139139

140140
| Parameters | Type | Default value | Description |
141141
|------------|---------|------------------------------|-------------|
@@ -181,8 +181,8 @@ When no longer needed, [delete the resource group](../azure-resource-manager/man
181181

182182
## Next steps
183183

184-
- [Deploy from local Git](deploy-local-git.md)
185-
- [ASP.NET Core with SQL Database](tutorial-dotnetcore-sqldb-app.md)
186-
- [Python with Postgres](tutorial-python-postgresql-app.md)
187-
- [PHP with MySQL](tutorial-php-mysql-app.md)
188-
- [Connect to Azure SQL database with Java](/azure/azure-sql/database/connect-query-java?toc=%2fazure%2fjava%2ftoc.json)
184+
- [Deploy from local Git](deploy-local-git.md)
185+
- [ASP.NET Core with SQL Database](tutorial-dotnetcore-sqldb-app.md)
186+
- [Python with Postgres](tutorial-python-postgresql-app.md)
187+
- [PHP with MySQL](tutorial-php-mysql-app.md)
188+
- [Connect to Azure SQL database with Java](/azure/azure-sql/database/connect-query-java?toc=%2fazure%2fjava%2ftoc.json)

articles/app-service/quickstart-dotnetcore-uiex.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ROBOTS: NOINDEX,NOFOLLOW
1616

1717
In this quickstart, you'll learn how to create and deploy your first ASP.NET Core web app to Azure App Service (An HTTP-based service for hosting web applications, REST APIs, and mobile back-end applications.). App Service supports .NET 5.0 apps.
1818

19-
When you're finished, you'll have an Azure resource group (A logical container for related Azure resources that you can manage as a unit.)When you're finishe App Service plan (The plan that specifies the location, size, and features of the web server farm that hosts your app.)When you App Service app (The representation of your web app, which contains your app code, DNS hostnames, certificates, and related resources.) with a deployed sample ASP.NET Core application.
19+
When you're finished, you'll have an Azure resource group (A logical container for related Azure resources that you can manage as a unit.) consisting of an App Service plan (The plan that specifies the location, size, and features of the web server farm that hosts your app.) and on App Service app (The representation of your web app, which contains your app code, DNS hostnames, certificates, and related resources.) with a deployed sample ASP.NET Core application.
2020

2121
<hr/>
2222

@@ -174,7 +174,7 @@ Advance to the next article to learn how to create a .NET Core app and connect i
174174
::: zone-end
175175

176176
::: zone pivot="platform-linux"
177-
This quickstart shows how to create a [.NET Core](/aspnet/core/) app on App Service on Linux (App Service on Linux provides a highly scalable, self-patching web hosting service using the Linux operating system.). You create the app using the [Azure CLI](/cli/azure/get-started-with-azure-cli), and you use Git to deploy the .NET Core code to the app.
177+
This quickstart shows how to create a [.NET Core](/aspnet/core/) app on App Service on Linux (App Service on Linux provides a highly scalable, self-patching web hosting service using the Linux operating system.). You create the app using the [Azure CLI](/cli/azure/get-started-with-azure-cli), and you use Git to deploy the .NET Core code to the app.
178178

179179
<hr/>
180180

0 commit comments

Comments
 (0)