Skip to content

Spelling Fixes #27934

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jun 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/RedisCache/RedisCache/help/New-AzRedisCache.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ New-AzRedisCache -ResourceGroupName "MyGroup" -Name "MyCache" -Location "Central
Zone : {1, 2}
```

This command creates Azure cache for Redis instance in mutliple zones.
This command creates Azure cache for Redis instance in multiple zones.

### Example 4: Create a Virtual Network enable Cache

Expand Down Expand Up @@ -602,7 +602,7 @@ Accept wildcard characters: False
```

### -UserAssignedIdentity
Specifies one or more comma seperated user identities to be associated with the Azure Cache for Redis. The user identity references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/identities/{identityName}'
Specifies one or more comma separated user identities to be associated with the Azure Cache for Redis. The user identity references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/identities/{identityName}'

```yaml
Type: System.String[]
Expand Down
2 changes: 1 addition & 1 deletion src/RedisCache/RedisCache/help/Set-AzRedisCache.md
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ Accept wildcard characters: False
```

### -UserAssignedIdentity
Specifies one or more comma seperated user identities to be associated with the Azure Cache for Redis. The user identity references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/identities/{identityName}'
Specifies one or more comma separated user identities to be associated with the Azure Cache for Redis. The user identity references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/identities/{identityName}'

```yaml
Type: System.String[]
Expand Down
4 changes: 2 additions & 2 deletions src/Relay/Relay/help/New-AzRelayHybridConnection.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ This cmdlet creates a new Hybrid Connection using an existing Hybrid Connection
### Example 3: Update an existing Hybrid Connection
```powershell
$connection = Get-AzRelayHybridConnection -ResourceGroupName lucas-relay-rg -Namespace namespace-pwsh01 -Name connection-02
$connection.UserMetadata = "TestHybirdConnection2"
$connection.UserMetadata = "TestHybridConnection2"
New-AzRelayHybridConnection -ResourceGroupName lucas-relay-rg -Namespace namespace-pwsh01 -Name connection-02 -InputObject $connection | Format-List
```

Expand All @@ -113,7 +113,7 @@ SystemDataLastModifiedBy :
SystemDataLastModifiedByType :
Type : Microsoft.Relay/namespaces/hybridconnections
UpdatedAt : 1/1/0001 12:00:00 AM
UserMetadata : TestHybirdConnection2
UserMetadata : TestHybridConnection2
```

This cmdlet updates an existing Hybrid Connection.
Expand Down
12 changes: 6 additions & 6 deletions src/Relay/Relay/help/Set-AzRelayAuthorizationRule.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ Type : Microsoft.Relay/Namespaces/AuthorizationRules

This cmdlet adds Listen from the access rights of the authorization rule for the Relay namespace.

### Example 2: Adds Send from the access rights of the authorization rule for the Relay namespace with InputeObject parameter
### Example 2: Adds Send from the access rights of the authorization rule for the Relay namespace with InputObject parameter
```powershell
$authRule = Get-AzRelayAuthorizationRule -ResourceGroupName Relay-ServiceBus-EastUS -Namespace namespace-pwsh01 -Name authRule-01
$authRule.Rights += 'Send'
Expand All @@ -105,7 +105,7 @@ SystemDataLastModifiedByType :
Type : Microsoft.Relay/Namespaces/AuthorizationRules
```

This cmdlet adds Send from the access rights of the authorization rule for the Relay namespace with InputeObject parameter.
This cmdlet adds Send from the access rights of the authorization rule for the Relay namespace with InputObject parameter.

### Example 3: Set or update Listen from the access rights of the authorization rule for the Hybrid Connection
```powershell
Expand All @@ -130,7 +130,7 @@ Type : Microsoft.Relay/namespaces/hybridconnections/auth

This cmdlet set or update Listen from the access rights of the authorization rule for the Hybrid Connection.

### Example 4: Adds Send from the access rights of the authorization rule for the Hybrid Connection with InputeObject parameter
### Example 4: Adds Send from the access rights of the authorization rule for the Hybrid Connection with InputObject parameter
```powershell
$authRule = Get-AzRelayAuthorizationRule -ResourceGroupName lucas-relay-rg -Namespace namespace-pwsh01 -HybridConnection connection-01 -Name authRule-01
$authRule.Rights += 'Send'
Expand All @@ -153,7 +153,7 @@ SystemDataLastModifiedByType :
Type : Microsoft.Relay/namespaces/hybridconnections/authorizationrules
```

This cmdlet adds Send from the access rights of the authorization rule for the Hybrid Connection with InputeObject parameter.
This cmdlet adds Send from the access rights of the authorization rule for the Hybrid Connection with InputObject parameter.

### Example 5: Adds Send from the access rights of the authorization rule for the Wcf Relay
```powershell
Expand All @@ -178,7 +178,7 @@ Type : Microsoft.Relay/namespaces/wcfrelays/authorizatio

This cmdlet adds Send from the access rights of the authorization rule for the Wcf Relay.

### Example 6: Adds Send from the access rights of the authorization rule for the Wcf Relay with InputeObject parameter
### Example 6: Adds Send from the access rights of the authorization rule for the Wcf Relay with InputObject parameter
```powershell
$authRule = Get-AzRelayAuthorizationRule -ResourceGroupName lucas-relay-rg -Namespace namespace-pwsh01 -WcfRelay wcf-01 -Name authRule-01
$authRule.Rights += 'Send'
Expand All @@ -201,7 +201,7 @@ SystemDataLastModifiedByType :
Type : Microsoft.Relay/namespaces/wcfrelays/authorizationrules
```

This cmdlet adds Send from the access rights of the authorization rule for the Wcf Relay with InputeObject parameter.
This cmdlet adds Send from the access rights of the authorization rule for the Wcf Relay with InputObject parameter.

## PARAMETERS

Expand Down
4 changes: 2 additions & 2 deletions src/Relay/Relay/help/Set-AzRelayHybridConnection.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ This example updates the UserMetadata property with new value.
### Example 2: Updates a HybridConnection in the specified Relay namespace
```powershell
$connection = Get-AzRelayHybridConnection -ResourceGroupName Relay-ServiceBus-EastUS -Namespace namespace-pwsh01 -Name connection-01
$connection.UserMetadata = "testHybirdConnection"
$connection.UserMetadata = "testHybridConnection"
Set-AzRelayHybridConnection -ResourceGroupName Relay-ServiceBus-EastUS -Namespace namespace-pwsh01 -Name connection-01 -InputObject $connection | Format-List
```

Expand All @@ -85,7 +85,7 @@ SystemDataLastModifiedBy :
SystemDataLastModifiedByType :
Type : Microsoft.Relay/namespaces/hybridconnections
UpdatedAt : 3/30/2023 6:28:37 AM
UserMetadata : testHybirdConnection
UserMetadata : testHybridConnection
```

This command updates a HybridConnection in the specified Relay namespace.
Expand Down
6 changes: 3 additions & 3 deletions src/Reservations/Reservations/help/Get-AzReservation.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ centralus bd82bff8-4d29-9375-8194-ce0709fc1691/f2c3a058-b469-4529-88fa-1bae251c
```

Get the list of reservation orders in the current tenant.
By design, some propeties do not have data due to the api response(e.g.
By design, some properties do not have data due to the api response(e.g.
LastUpdatedDateTime and SkuDescription).
In this case please get the single reservation with command in example 2 to get the missing data.

Some data might be trucated due to the width of powershell view, appending this to the end of the command to show the truncated data: | ft -Wrap
Some data might be truncated due to the width of powershell view, appending this to the end of the command to show the truncated data: | ft -Wrap

### Example 2: Get the reservation details given ReservationOrderId and ReservationId
```powershell
Expand All @@ -79,7 +79,7 @@ centralus a87c1742-0080-5b4d-b953-8531ad46fdc8/cad6fef7-ae86-4d47-91d0-67c897934
```

Get the details of a single reservation.
Some data might be trucated due to the width of powershell view, appending this to the end of the command to show the truncated data: | ft -Wrap
Some data might be truncated due to the width of powershell view, appending this to the end of the command to show the truncated data: | ft -Wrap

## PARAMETERS

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ westus 2b9b9372-24e1-4a07-a354-2078fe347cf9/2ef560a7-f469-4b62-87b7-5312d588ce
```

Get the revision of a reservation.
Some data might be trucated due to the width of powershell view, appending this to the end of the command to show the truncated data: | ft -Wrap
Some data might be truncated due to the width of powershell view, appending this to the end of the command to show the truncated data: | ft -Wrap

## PARAMETERS

Expand Down
4 changes: 2 additions & 2 deletions src/Reservations/Reservations/help/Get-AzReservationOrder.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ ReservationOrderId DisplayName
```

Get the list of reservation orders in the current tenant.
Some data might be trucated due to the width of powershell view, appending this to the end of the command to show the truncated data: | ft -Wrap
Some data might be truncated due to the width of powershell view, appending this to the end of the command to show the truncated data: | ft -Wrap

### Example 2: Get the reservation order in the current tenant, given reservation order Id
```powershell
Expand All @@ -63,7 +63,7 @@ ReservationOrderId DisplayName Term State Quant
```

Get the reservation order in the current tenant, given reservation order Id.
Some data might be trucated due to the width of powershell view, appending this to the end of the command to show the truncated data: | ft -Wrap
Some data might be truncated due to the width of powershell view, appending this to the end of the command to show the truncated data: | ft -Wrap

## PARAMETERS

Expand Down
2 changes: 1 addition & 1 deletion src/Reservations/Reservations/help/Merge-AzReservation.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ westeurope 79ebddac-4030-4296-ab93-1ad90f032058/5a91b7d0-9276-4bc9-adae-2a3f5c2e

Merge two reservations into one single reservation.
The two reservations must have the same reservation order id.
ReservationId can be either GUID form or fully qulified reservation id form "providers/Microsoft.Capacity/reservationOrders/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/reservations/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
ReservationId can be either GUID form or fully qualified reservation id form "providers/Microsoft.Capacity/reservationOrders/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/reservations/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"

## PARAMETERS

Expand Down
2 changes: 1 addition & 1 deletion src/Reservations/Reservations/help/Split-AzReservation.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ westeurope c615c897-aaaa-4123-8527-c42cc0da41e0/1bdfaf4a-159d-46ec-be3a-f4aa527d

Split one reservation order into two reservations, given the quantity of each reservation.
The quantity sum up should be equal to the original reservation before splitting.
ReservationId can be either GUID form or fully qulified reservation id form "providers/Microsoft.Capacity/reservationOrders/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/reservations/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
ReservationId can be either GUID form or fully qualified reservation id form "providers/Microsoft.Capacity/reservationOrders/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/reservations/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"

## PARAMETERS

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ global SharedQuery-t01 microsoft.resourcegraph/queries

This command gets a resource graph query by name.

### Example 3: Get a resource graph query by objecy
### Example 3: Get a resource graph query by object
```powershell
$query = New-AzResourceGraphQuery -ResourceGroupName azure-rg-test -Name query-t03 -Location 'global' -Query 'project id, name, type, location' -Description 'test'
Get-AzResourceGraphQuery -InputObject $query
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ To aid the user to prerequisite the operation the client can call operation with

## EXAMPLES

### Example 1: Validate the dependecies before remove of the Move Resources from Move Collection
### Example 1: Validate the dependencies before remove of the Move Resources from Move Collection
```powershell
Invoke-AzResourceMoverBulkRemove -ResourceGroupName "RG-MoveCollection-demoRMS" -MoveCollectionName "PS-centralus-westcentralus-demoRMS" -MoveResource $('PSDemoVM') -MoveResourceInputType "MoveResourceId" -ValidateOnly
```
Expand All @@ -51,7 +51,7 @@ StartTime : 2/10/2021 12:52:28 PM
Status : Succeeded
```

Validate the dependecies before remove of the move resources from Move Collection.
Validate the dependencies before remove of the move resources from Move Collection.

### Example 2: Remove the Move Resource from Move Collection using "MoveResource Name" as input
```powershell
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ To aid the user to prerequisite the operation the client can call operation with

## EXAMPLES

### Example 1: Validate the dependecies before commit of the resources.
### Example 1: Validate the dependencies before commit of the resources.
```powershell
Invoke-AzResourceMoverCommit -ResourceGroupName "RG-MoveCollection-demoRMS" -MoveCollectionName "PS-centralus-westcentralus-demoRMS" -MoveResource $('psdemorm-vnet') -MoveResourceInputType "MoveResourceId" -ValidateOnly
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ To aid the user to prerequisite the operation the client can call operation with

## EXAMPLES

### Example 1: Validate the dependecies before Discard of the resources.
### Example 1: Validate the dependencies before Discard of the resources.
```powershell
Invoke-AzResourceMoverInitiateMove -ResourceGroupName "RG-MoveCollection-demoRMS" -MoveCollectionName "PS-centralus-westcentralus-demoRMS" -MoveResource $('psdemorm-vnet') -MoveResourceInputType "MoveResourceId" -ValidateOnly
```
Expand All @@ -51,7 +51,7 @@ StartTime : 2/10/2021 12:39:37 PM
Status : Succeeded
```

Validate the dependecies before Discard of the resources.
Validate the dependencies before Discard of the resources.

### Example 2: Discards the move of the resources using "MoveResource Name" as input.
```powershell
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Moves the set of resources included in the request body.The move operation is tr

## EXAMPLES

### Example 1: Validate the dependecies before Initiate Move for the resources.
### Example 1: Validate the dependencies before Initiate Move for the resources.
```powershell
Invoke-AzResourceMoverInitiateMove -ResourceGroupName "RG-MoveCollection-demoRMS" -MoveCollectionName "PS-centralus-westcentralus-demoRMS" -MoveResource $('psdemorm-vnet') -MoveResourceInputType "MoveResourceId" -ValidateOnly
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ To aid the user to prerequisite the operation the client can call operation with

## EXAMPLES

### Example 1: Validate the dependecies before prepare of the resources. Get the required dependent resources that also need to be prepared.
### Example 1: Validate the dependencies before prepare of the resources. Get the required dependent resources that also need to be prepared.
```powershell
$resp = Invoke-AzResourceMoverPrepare -ResourceGroupName "RG-MoveCollection-demoRMS" -MoveCollectionName "PS-centralus-westcentralus-demoRMS" -MoveResource $('psdemovm') -ValidateOnly
```
Expand Down Expand Up @@ -65,7 +65,7 @@ SourceId
/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourcegroups/psdemorm/providers/microsoft.network/networksecuritygroups/psdemovm-nsg
```

Validate the dependecies before prepare of the resources.
Validate the dependencies before prepare of the resources.
Get the required dependent resources that also need to be prepared.

### Example 2: Initiate prepare for the set of resources in the Move Collection using "MoveResource Name" as input.
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/Resources/help/Az.Resources.md
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ Removes a Resource Group scoped Deployment Stack.
Removes a resource lock.

### [Remove-AzResourceManagementPrivateLink](Remove-AzResourceManagementPrivateLink.md)
Deletes the Resource Manangement Private Link.
Deletes the Resource Management Private Link.

### [Remove-AzRoleAssignment](Remove-AzRoleAssignment.md)
Removes a role assignment to the specified principal who is assigned to a particular role at a particular scope.
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/Resources/help/Get-AzManagementGroup.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Get specific Management Group


```powershell
$reponse = Get-AzManagementGroup -GroupName TestGroupParent -Expand
$response = Get-AzManagementGroup -GroupName TestGroupParent -Expand
$response

Id : /providers/Microsoft.Management/managementGroups/TestGroupParent
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gets Management Group scoped Deployment Stacks.

## SYNTAX

### ListByManagmentGroupId (Default)
### ListByManagementGroupId (Default)
```
Get-AzManagementGroupDeploymentStack -ManagementGroupId <String> [-Pre]
[-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
Expand All @@ -31,13 +31,13 @@ Get-AzManagementGroupDeploymentStack -ResourceId <String> [-Pre] [-DefaultProfil
```

## DESCRIPTION
Retrieve a mangement group scoped deployment stack.
Retrieve a management group scoped deployment stack.

## EXAMPLES

### Example 1: Retrieves the deployment stack MyMGStack in mangement group MyManagementGroup
### Example 1: Retrieves the deployment stack MyMGStack in management group MyManagementGroup
```powershell
Get-AzManagementGroupDeploymentStack -ManagementGroupId MyMangementGroup -Name MyMGStack
Get-AzManagementGroupDeploymentStack -ManagementGroupId MyManagementGroup -Name MyMGStack
```

Get a deployment stack named 'MyMGStack' under an MG named 'MyManagementGroup'.
Expand All @@ -64,7 +64,7 @@ The id of the ManagementGroup where the DeploymentStack is deployed

```yaml
Type: System.String
Parameter Sets: ListByManagmentGroupId, GetByManagementGroupIdAndName
Parameter Sets: ListByManagementGroupId, GetByManagementGroupIdAndName
Aliases:

Required: True
Expand Down
4 changes: 2 additions & 2 deletions src/Resources/Resources/help/Get-AzPrivateLinkAssociation.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Properties : {"privateLink":"/subscriptions/aeb49941-36c3-4e7c-9ffd-16ba89d33ec4
/managementGroups/fc096d27-0434-4460-a3ea-110df0422a2d"}
```

Get all the private link associations at the managment group scope.
Get all the private link associations at the management group scope.

### Example 2
```powershell
Expand All @@ -65,7 +65,7 @@ Properties : {"privateLink":"/subscriptions/aeb49941-36c3-4e7c-9ffd-16ba89d33ec4
/managementGroups/fc096d27-0434-4460-a3ea-110df0422a2d"}
```

Get the specific private link associations at the managment group scope.
Get the specific private link associations at the management group scope.

## PARAMETERS

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Location : centralus
PrivateEndpointConnections : {}
```

Gets all of the resoure management private links at the subscription scope.
Gets all of the resource management private links at the subscription scope.

### Example 3
```powershell
Expand All @@ -82,7 +82,7 @@ Location : centralus
PrivateEndpointConnections : {}
```

Gets all of the resoure management private links at the resource group scope.
Gets all of the resource management private links at the resource group scope.

## PARAMETERS

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Get all child resources of a resource `scope` that the calling user has eligible
### Example 2: List all child resources filtered by resource type
```powershell
$scope = "/subscriptions/38ab2ccc-3747-4567-b36b-9478f5602f0d/"
$filter = "resoureType eq 'resourcegroup'"
$filter = "resourceType eq 'resourcegroup'"
Get-AzRoleEligibleChildResource -Scope $scope -Filter $filter
```

Expand Down
2 changes: 1 addition & 1 deletion src/Resources/Resources/help/New-AzADServicePrincipal.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ Create service principal with existing application
New-AzADServicePrincipal -DisplayName $name
```

Create application with display name and associated new service pincipal with it
Create application with display name and associated new service principal with it

## PARAMETERS

Expand Down
Loading