Skip to content

Commit 6682977

Browse files
committed
Spelling Wave 2
1 parent 19b7773 commit 6682977

15 files changed

+17
-17
lines changed

docs/pipelines/create-first-pipeline.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ Learn more about [working with JavaScript](ecosystems/javascript.md) in your pip
173173
az pipelines create --name "First-Java.CI" --org <organization> --project <project>
174174
```
175175
176-
Replace `<organization>` and `<project>` with naem of your Azure DevOps organization and project.
176+
Replace `<organization>` and `<project>` with name of your Azure DevOps organization and project.
177177
178178
If you don't have the **azure-devops** Azure CLI extension, you'll be prompted to install it.
179179

docs/pipelines/ecosystems/kubernetes/canary-demo.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ The GitHub repository contains the following files:
6666
variables:
6767
imageName: azure-pipelines-canary-k8s # name of ACR image
6868
dockerRegistryServiceConnection: azure-pipelines-canary-acr # name of ACR service connection
69-
imageRepository: 'azure-pipelines-canary-k8s' # name of image repostory
69+
imageRepository: 'azure-pipelines-canary-k8s' # name of image repository
7070
containerRegistry: example.azurecr.io # name of Azure container registry
7171
tag: '$(Build.BuildId)'
7272

@@ -483,4 +483,4 @@ Once rejected, the pipeline prevents the code deployment.
483483

484484
## Clean up
485485

486-
If you're not going to continue to use this application, delete the resource group in Azure portal and the project in Azure DevOps.
486+
If you're not going to continue to use this application, delete the resource group in Azure portal and the project in Azure DevOps.

docs/pipelines/release/define-multistage-release-process.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Enabling continuous deployment trigger will instruct the pipeline to automatical
4545

4646
1. In **Azure Pipelines**, open the **Releases** tab. Select your release pipeline, then select **Edit**.
4747

48-
![edit the release pipelin](media/define-multistage-release-process/open-for-edit.png)
48+
![edit the release pipeline](media/define-multistage-release-process/open-for-edit.png)
4949

5050
1. Select the **Continuous deployment trigger** icon in the **Artifacts** section to open the trigger panel. Make sure this is enabled so that a new release is created after every new successful build is completed.
5151

docs/pipelines/release/troubleshoot-workload-identity.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ You can fix the issuer URL by editing and saving the service connection to updat
115115

116116
The next sections identify common issues and describe causes and resolutions.
117117

118-
<a name='i-dont-have-permissions-to-create-a-service-principal-in-the-micrososft-entra-tenant'></a>
118+
<a name='i-dont-have-permissions-to-create-a-service-principal-in-the-microsoft-entra-tenant'></a>
119119

120120
### I don't have permissions to create a service principal in the Microsoft Entra tenant
121121

@@ -152,4 +152,4 @@ The following table identifies common error messages and issues that might gener
152152
| **Script failed with error: UnrecognizedArgumentError: unrecognized arguments: --federated-token** | You're using an AzureCLI task on an agent that has an earlier version of the Azure CLI installed. Workload identity federation requires Azure CLI 2.30 or later. |
153153
| **Failed to create an app in Microsoft Entra ID. Error: Insufficient privileges to complete the operation in Microsoft Graph. Ensure that the user has permissions to create a Microsoft Entra Application.** | The ability to create app registrations was [disabled](/azure/active-directory/roles/delegate-app-roles#restrict-who-can-create-applications) in the Microsoft Entra tenant. Assign the user who is creating the service connection the [Application Developer](/azure/active-directory/roles/permissions-reference#application-developer) Microsoft Entra role. Alternatively, create the service connection manually by using a managed identity. For more information, see [Workload identity with managed identity](https://aka.ms/azdo-rm-workload-identity-manual). |
154154

155-
Is the AADSTS error you see not listed above? Check [Microsoft Entra authentication and authorization error codes](/entra/identity-platform/reference-error-codes#aadsts-error-codes).
155+
Is the AADSTS error you see not listed above? Check [Microsoft Entra authentication and authorization error codes](/entra/identity-platform/reference-error-codes#aadsts-error-codes).

docs/pipelines/scripts/cli/pipeline-variable-group-secret-nonsecret-variables.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ With the sample in this guide, you learn how to:
2424
- Execute the pipeline using the Azure DevOps CLI and monitor the run processing and output.
2525

2626
> [!NOTE]
27-
> This sample demostrates the functionality of Azure DevOps CLI with variable groups. For increased security, [define variables in variables groups in the Pipelines UI](../../library/variable-groups.md) or [link a variable group to secrets in Azure Key Vault](../../library/link-variable-groups-to-key-vaults.md).
27+
> This sample demonstrates the functionality of Azure DevOps CLI with variable groups. For increased security, [define variables in variables groups in the Pipelines UI](../../library/variable-groups.md) or [link a variable group to secrets in Azure Key Vault](../../library/link-variable-groups-to-key-vaults.md).
2828
2929
[!INCLUDE [include](~/../docs/reusable-content/azure-cli/azure-cli-prepare-your-environment.md)]
3030

docs/pipelines/troubleshooting/review-logs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ steps:
378378
targetType: 'inline'
379379
script: '$(System.DefaultWorkingDirectory)\perfview.exe /accepteula /logfile:"PerfView.log" abort'
380380

381-
- task: PowerShell@2 # add a sleep of 5 mins, to givet time for required for traces to be complete
381+
- task: PowerShell@2 # add a sleep of 5 mins, to give it time for required traces to be complete
382382
inputs:
383383
targetType: 'inline'
384384
script: 'Start-Sleep -Seconds 300'

docs/reference/add-portfolio-backlogs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ This article walks you through adding a portfolio backlog to a project based on
5757

5858
You can apply the same steps if you work with a project based on the [Scrum](../boards/work-items/guidance/scrum-process.md) or [CMMI](../boards/work-items/guidance/cmmi-process.md) process. When you're done, you'll get to manage your portfolio of projects by grouping work within these four levels: User Stories (or Product backlog items or Requirements), Features, Epics, and Initiatives.
5959

60-
For more informaiton, see [About processes and process templates](../boards/work-items/guidance/choose-process.md). For an overview of the three process models, see [Customize your work tracking experience](customize-work.md).
60+
For more information, see [About processes and process templates](../boards/work-items/guidance/choose-process.md). For an overview of the three process models, see [Customize your work tracking experience](customize-work.md).
6161

6262
<a id="export-files"> </a>
6363

docs/reference/on-premises-xml-process-model.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ For Azure DevOps Server 2019 and later versions, you have a choice of process mo
3131

3232

3333
> [!IMPORTANT]
34-
> Migration of projects or collections from Hosted XML to the inherited model is not support for Azure DevOps Server. It is only available on the Azure DevOps Sevice.
34+
> Migration of projects or collections from Hosted XML to the inherited model is not support for Azure DevOps Server. It is only available on the Azure DevOps Services.
3535
>
3636
> To customize an Azure DevOps Services project, see [About process customization and inherited processes](../organizations/settings/work/inheritance-process-model.md). This article applies to on-premises deployments only.
3737

docs/report/extend-analytics/aggregated-data-analytics.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Using the `$apply` extension, you can obtain counts, sums, and additional inform
8181
8282
The OData aggregation extension also supports a `groupby` clause that is identical to the SQL `GROUP BY` clause. You can use this clause to quickly break down numbers in more detail.
8383
84-
For example, thie following clause returns a count of work items:
84+
For example, the following clause returns a count of work items:
8585
8686
> [!div class="tabbedCodeSnippets"]
8787
> ```OData

docs/report/extend-analytics/analytics-metadata.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ ReferenceName is another common annotation used to define the system identifier
106106
107107
Querying an individual Entity is useful. Eventually, you'll probably want to filter or expand details of another Entity. To do so, you need to understand how to use the [Navigational Properties](data-model-analytics-service.md) of the Entity model.
108108
109-
A `NavigationaProperty` with a collection type represents a many-to-many relationship in the model.
109+
A `NavigationProperty` with a collection type represents a many-to-many relationship in the model.
110110
111111
> [!div class="tabbedCodeSnippets"]
112112
> ```XML

docs/report/sql-reports/migration-guide.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ As you migrate from using SQL Server Reporting Services to Analytics, note the f
4242
Several new features have been introduced to support data insights that weren't available with SQL Server Reporting services.
4343

4444
- **Dashboard widgets**: Many widgets have been added to support status and trend views, including ones based on Analytics data. For an overview, see the [widget catalog](../dashboards/widget-catalog.md).
45-
- **Built-in Analytics reports**: Severa in-context reports have been added to support Azure Boards, Pipelines, and Test Plans. These reports display Analytics data as described in [About dashboards, charts, reports, & widgets](../dashboards/overview.md).
45+
- **Built-in Analytics reports**: Several in-context reports have been added to support Azure Boards, Pipelines, and Test Plans. These reports display Analytics data as described in [About dashboards, charts, reports, & widgets](../dashboards/overview.md).
4646
- **Rollup**: Rollup columns allow you to view progress bars or totals of numeric fields for descendant items within a work item hierarchy. You can add them to any backlog view. For more information, see [Display rollup progress or totals](../../boards/backlogs/display-rollup.md).
4747
- **Query-based charts grouped by tags**: You can now generate query charts and add them to dashboards based on grouping by tags.
4848
- **Traceability**: Increased support for tracking work from requirements to deployment. End-to-end traceability is supported by linking various objects such as work items, branches, commits, pull requests, builds, and releases. Built-in reports based on the Analytics service support the ability to monitor traceability in real time. For more information, see [End-to-end traceability](../../cross-service/end-to-end-traceability.md).

docs/repos/git/branch-permissions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ The following permissions are automatically assigned to branch creators: **Contr
6565

6666

6767
> [!NOTE]
68-
> The **Exempt from policy enforcement** permission was removed for Azure DevOps Server 2019 and later versions. It's functionalilty is now supported with the following two permissions:
68+
> The **Exempt from policy enforcement** permission was removed for Azure DevOps Server 2019 and later versions. It's functionality is now supported with the following two permissions:
6969
>
7070
>- **Bypass policies when completing pull requests**
7171
>- **Bypass policies when pushing**

docs/repos/git/create-new-repo.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ To work with a Git repo, you clone it to your computer. Cloning a repo creates a
6666

6767
2. Select **Clone** in the upper-right corner of the **Files** window and copy the clone URL.
6868

69-
![Clone respository dialog.](./media/clone-repo/clone-repo.png)
69+
![Clone repository dialog.](./media/clone-repo/clone-repo.png)
7070

7171
3. Open the Git command window (Git Bash on Git for Windows). Then, browse to the folder where you want the code from the repo stored on your computer. Run `git clone` followed by the path copied from the **Clone URL** in the previous section, as shown in the following example.
7272

docs/repos/security/github-advanced-security-dependency-scanning.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ If alerts are created for new dependency changes in a pull request, the alert wi
479479

480480
You can see the affected package manifest, see a summary of the finding, and resolve the annotation in the Overview section.
481481

482-
[![Screenshot of active depenendency pull request annotation.](./media/pull-request-annotation-dependency-scanning.png)](./media/pull-request-annotation-dependency-scanning.png#lightbox)
482+
[![Screenshot of active dependency pull request annotation.](./media/pull-request-annotation-dependency-scanning.png)](./media/pull-request-annotation-dependency-scanning.png#lightbox)
483483

484484
To dismiss pull request alerts, you must navigate to the alert detail view to close both the alert and resolve the annotation. Otherwise, simply changing the comment status (1) resolves the annotation but does not close or fix the underlying alert.
485485

docs/test/create-test-cases.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ You can assign an individual test case to a tester.
259259
2. Add or remove testers from the list. After you select the testers, tick the **Send email**
260260
checkbox and edit the message as required so they know that tests are ready for them to run.
261261

262-
![Screenshot shwoing send emails to testers.](media/create-test-cases/AssignMultipleTestersEmail.png)
262+
![Screenshot showing send emails to testers.](media/create-test-cases/AssignMultipleTestersEmail.png)
263263

264264
The email contains a link that testers can open to see the list of assigned tests.
265265
Testers need [Basic access](../organizations/security/access-levels.md)

0 commit comments

Comments
 (0)