Skip to content

Commit c8b5795

Browse files
Merge pull request #14987 from MicrosoftDocs/bulk-ai-typofix
[Bulk] AI suggested typo corrections and one URL edit
2 parents 9c5f927 + 57c0e04 commit c8b5795

File tree

12 files changed

+55
-56
lines changed

12 files changed

+55
-56
lines changed

docs/antipatterns/busy-database/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ ORDER BY soh.[TotalDue] DESC
8484
FOR XML PATH ('Order'), ROOT('Orders')
8585
```
8686

87-
Clearly, this is complex query. As we'll see later, it turns out to use significant processing resources on the database server.
87+
Clearly, this is a complex query. As we'll see later, it turns out to use significant processing resources on the database server.
8888

8989
## How to fix the problem
9090

@@ -269,4 +269,4 @@ CPU and DTU utilization shows that the system took longer to reach saturation, d
269269
- [Extraneous Fetching antipattern][ExtraneousFetching]
270270

271271
[dtu]: /azure/sql-database/sql-database-service-tiers-dtu
272-
[ExtraneousFetching]: ../extraneous-fetching/index.md
272+
[ExtraneousFetching]: ../extraneous-fetching/index.md

docs/data-guide/disaster-recovery/dr-for-azure-data-platform-scenario-details-content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ The following sections present a breakdown of Contoso activity necessary across
105105
- Availability Zone failure: Contoso would need to validate availability and redeploy if necessary.
106106
- Azure regional failure: Contoso would need to redeploy the Foundation Azure Firewalls into the secondary region.
107107
- Notes
108-
- Azure Firewall can be created with [Availability Zones](/en-au/azure/firewall/deploy-availability-zone-powershell) for increased availability.
108+
- Azure Firewall can be created with [Availability Zones](/azure/firewall/deploy-availability-zone-powershell) for increased availability.
109109
- A "Warm Spare" strategy would mitigate this activity.
110110

111111
- **Azure DDoS**

docs/example-scenario/integration/sma-opcon-azure-content.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ The diagram has two main sections: the on-premises network and Azure. The enviro
116116
- OpCon administration
117117
- OpCon MFT administration
118118
- OpCon workflow development, implementation, and monitoring
119-
- OfCon Self Service
119+
- OpCon Self Service
120120
- OpCon Vision (task dashboard)
121121
- OpCon MFT central application (dashboard and query application)
122122

@@ -332,4 +332,4 @@ For more information about this solution:
332332
## Related resources
333333

334334
- [Unisys ClearPath Forward OS 2200 enterprise server virtualization on Azure](../../mainframe/virtualization-of-unisys-clearpath-forward-os-2200-enterprise-server-on-azure.yml)
335-
- [Unisys ClearPath Forward MCP mainframe rehost to Azure by using Unisys virtualization](../../example-scenario/mainframe/unisys-clearpath-forward-mainframe-rehost.yml)
335+
- [Unisys ClearPath Forward MCP mainframe rehost to Azure by using Unisys virtualization](../../example-scenario/mainframe/unisys-clearpath-forward-mainframe-rehost.yml)

docs/guide/architecture-styles/n-tier.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Implement N-tier architectures effectively by using managed services that provid
7474
This section describes an N-tier architecture that runs on VMs.
7575

7676
> [!NOTE]
77-
> Use VMs to host an N-teir architecture if you plan to migrate an existing application to Azure with minimal refactoring. Otherwise, consider using [managed services to implement the architecture](/azure/app-service/tutorial-secure-ntier-app), such as Azure App Service or Azure Container Apps.
77+
> Use VMs to host an N-tier architecture if you plan to migrate an existing application to Azure with minimal refactoring. Otherwise, consider using [managed services to implement the architecture](/azure/app-service/tutorial-secure-ntier-app), such as Azure App Service or Azure Container Apps.
7878
7979
:::image type="complex" source="./images/n-tier-physical-bastion.png" border="false" lightbox="./images/n-tier-physical-bastion.png" alt-text="Diagram that shows an N-tier architecture.":::
8080
The flow begins with the internet, which connects to a load balancer that routes incoming traffic to two network virtual appliances (NVAs) located in the perimeter network. Traffic then passes through another load balancer to reach multiple VMs in the web tier. A third load balancer forwards traffic from the web tier to the business tier, which includes multiple VMs. The business tier connects through a fourth load balancer to the data tier, which includes a primary and secondary SQL Server. For secure administrative access, DevOps personnel use the Azure portal to connect to an Azure Bastion host located in the AzureBastionSubnet. The perimeter network, all tiers, and the AzureBastionSubnet reside in a virtual network.
@@ -121,4 +121,4 @@ Network security groups restrict access to each tier. For example, the database
121121
[caching]: ../../best-practices/caching.yml
122122
[ha-nva]: ../../networking/guide/network-virtual-appliance-high-availability.md
123123
[hybrid-network]: ../../reference-architectures/hybrid-networking/index.yml
124-
[sql-always-on]: /sql/database-engine/availability-groups/windows/always-on-availability-groups-sql-server
124+
[sql-always-on]: /sql/database-engine/availability-groups/windows/always-on-availability-groups-sql-server

docs/guide/devops/deployment-scripts-property-check-content.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This article uses an Azure Virtual WAN scenario to illustrate the technique. The
66
> - [`azResourceStateCheck.bicep`](https://github.com/Azure/CAE-Bits/blob/main/infra/samples/deployment-scripts-property-check/modules/azResourceStateCheck.bicep)
77
> - [Invoke-AzResourceStateCheck.ps1](https://github.com/Azure/CAE-Bits/blob/main/infra/samples/deployment-scripts-property-check/scripts/Invoke-AzResourceStateCheck.ps1)
88
9-
You can adapt the files for your deployment. The azResourceStateCheck.bicep module is parameterized for ease of reuse. Be sure to note how the **dependsOn** property is used in orchestration.bicep to make the vwanvhcs.bicep module deployment depend on the azResourceStateCheck.bicep nodule deployment.
9+
You can adapt the files for your deployment. The azResourceStateCheck.bicep module is parameterized for ease of reuse. Be sure to note how the **dependsOn** property is used in orchestration.bicep to make the vwanvhcs.bicep module deployment depend on the azResourceStateCheck.bicep module deployment.
1010

1111
## Architecture
1212

@@ -226,4 +226,4 @@ Other contributor:
226226

227227
- [Hub-spoke network topology with Azure Virtual WAN](../../networking/architecture/hub-spoke-virtual-wan-architecture.yml)
228228
- [Architectural approaches for the deployment and configuration of multitenant solutions](../multitenant/approaches/deployment-configuration.md)
229-
- [DevSecOps for infrastructure as code (IaC)](../../solution-ideas/articles/devsecops-infrastructure-as-code.yml)
229+
- [DevSecOps for infrastructure as code (IaC)](../../solution-ideas/articles/devsecops-infrastructure-as-code.yml)

docs/guide/technology-choices/service-for-java-comparison-content.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -137,16 +137,16 @@ The MicroProfile project provides a collection of specifications designed to hel
137137

138138
The following table provides build or migration information by application type and Azure service.
139139

140-
| | Type | Java SE | MicroProfile | JarkartaSE |
141-
|------------------------------|------------------|----------|--------------|------------|
142-
| **Virtual Machine** | IaaS | ✔ | ✔ | ✔ |
143-
| **VMware Tanzu** | IaaS | ✔ | | |
144-
| **Azure Kubernetes Service** | Container | ✔ | ✔ | ✔ |
145-
| **Red Hat OpenShift** | Container | ✔ | ✔ | ✔ |
146-
| **Azure Container App** | PaaS | ✔ | ✔ | |
147-
| **JBoss EAP** | PaaS App Service | ✔ | | ✔ |
148-
| **Apache Tomcat** | PaaS App Service | ✔ | | |
149-
| **Java SE** | PaaS App Service | ✔ | ✔ | |
140+
| | Type | Java SE | MicroProfile | JakartaSE |
141+
|------------------------------|------------------|----------|--------------|-----------|
142+
| **Virtual Machine** | IaaS | ✔ | ✔ | ✔ |
143+
| **VMware Tanzu** | IaaS | ✔ | | |
144+
| **Azure Kubernetes Service** | Container | ✔ | ✔ | ✔ |
145+
| **Red Hat OpenShift** | Container | ✔ | ✔ | ✔ |
146+
| **Azure Container App** | PaaS | ✔ | ✔ | |
147+
| **JBoss EAP** | PaaS App Service | ✔ | | ✔ |
148+
| **Apache Tomcat** | PaaS App Service | ✔ | | |
149+
| **Java SE** | PaaS App Service | ✔ | ✔ | |
150150

151151

152152
## Contributors
@@ -179,4 +179,4 @@ Principal authors:
179179
[4]: https://azure.microsoft.com/global-infrastructure/services/?products=virtual-machines
180180
[5]: /azure/devops/pipelines/?view=azure-devops
181181
[6]: /azure/developer/jenkins
182-
[7]: /azure/hdinsight/kafka/apache-kafka-introduction
182+
[7]: /azure/hdinsight/kafka/apache-kafka-introduction

docs/hybrid/hybrid-perf-monitoring-content.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This reference architecture shows how to use Azure Monitor to monitor the perfor
2828
- **Azure Monitor - Visualizations**. Azure Monitor uses visualization tools to review application and infrastructure components and communications between services in Azure Monitor. Visualization tools include **Application Map in Azure Application Insight**, **the Map feature of Azure Monitor for VMs**, **Azure Monitor Workbooks**, and various dashboard views available within Azure Monitor. For more information, see [Use the Map feature of Azure Monitor for VMs to understand application components][service-map], [Create and share dashboards of Log Analytics data][share-dashboards], and [Azure Monitor Workbooks][monitor-workbooks].
2929
- **Azure Monitor - Integrations**. Azure Monitor integrates with a range of partner and third-party tools and extensions. These tools and extensions enhance and build upon existing Azure Monitor functionality, such as analysis and visualizations.
3030
- **Azure Monitor - Actions - Alerts**. Variations in metric and log data can indicate the occurrence of events. Rules define the data variations that trigger alerts, provide notifications, and initiate remediation responses. In this architecture, when an alert is triggered, automation runbooks automatically remediate the on-premises VMs and Azure VMs. Webhook actions, Service Management integration, and other action types are also available. For more information, see [Create, view, and manage metric alerts using Azure Monitor][manage-metrics-alerts] and [Create, view, and manage log alerts using Azure Monitor][manage-log-alerts].
31-
- **Azure Monitor - Actions - Autoscale**. Autoscale adds or removes VM instances according to deman, which maintains performance and increases cost effectiveness. In this architecture, Autoscale has conditions defined around average CPU load (in percentage). When conditions are met, Azure Monitor Autoscale will adjust the scale set according to demand. For more information, see [Overview of autoscale in Microsoft Azure][autoscale-overview].
31+
- **Azure Monitor - Actions - Autoscale**. Autoscale adds or removes VM instances according to demand, which maintains performance and increases cost effectiveness. In this architecture, Autoscale has conditions defined around average CPU load (in percentage). When conditions are met, Azure Monitor Autoscale will adjust the scale set according to demand. For more information, see [Overview of autoscale in Microsoft Azure][autoscale-overview].
3232

3333
### Components
3434

@@ -233,4 +233,4 @@ Learn more about the component technologies:
233233
[itsm]: /azure/azure-monitor/platform/itsmc-overview
234234
[monitor-pricing]: https://azure.microsoft.com/pricing/details/monitor/
235235
[pricing-calculator]: https://azure.microsoft.com/pricing/calculator/?service=monitor
236-
[azmon-for-vms]: /azure/azure-monitor/insights/vminsights-overview
236+
[azmon-for-vms]: /azure/azure-monitor/insights/vminsights-overview

0 commit comments

Comments
 (0)