Skip to content

Commit

Permalink
Fix spelling errors in documentation (#463)
Browse files Browse the repository at this point in the history
  • Loading branch information
PlagueHO authored Sep 2, 2022
1 parent 36d26be commit 6f847d6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- Fixed spelling errors in documentation.

## [4.6.0] - 2022-08-07

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions docs/Get-CosmosDbAccountMasterKey.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ in Azure.
PS C:\> Get-CosmosDbAccountMasterKey -Name 'MyCosmosDBAccount' -ResourceGroupName 'MyResourceGroup'
```

Retrun the Primary Master Key for the 'MyCosmosDBAccount' in the resource group
Return the Primary Master Key for the 'MyCosmosDBAccount' in the resource group
'MyResourceGroup'.

### Example 2
Expand All @@ -40,7 +40,7 @@ Retrun the Primary Master Key for the 'MyCosmosDBAccount' in the resource group
PS C:\> Get-CosmosDbAccountMasterKey -Name 'MyCosmosDBAccount' -ResourceGroupName 'MyResourceGroup' -MasterKeyType 'SecondaryReadonlyMasterKey'
```

Retrun the Secondary Readonly Master Key for the 'MyCosmosDBAccount' in the resource group
Return the Secondary Readonly Master Key for the 'MyCosmosDBAccount' in the resource group
'MyResourceGroup'.

## PARAMETERS
Expand Down
4 changes: 2 additions & 2 deletions docs/New-CosmosDbDocument.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Create a new document for a collection in a Cosmos DB database.
New-CosmosDbDocument -Context <Context> [-KeyType <String>] [-Key <SecureString>]
[-Database <String>] -CollectionId <String> -DocumentBody <String>
[-IndexingDirective <String>] [-Upsert <Boolean>] [-PartitionKey <Object[]>]
[-Encoding <String>] [-RetrunJson <switch>] [<CommonParameters>]
[-Encoding <String>] [-ReturnJson <switch>] [<CommonParameters>]
```

### Account
Expand All @@ -28,7 +28,7 @@ New-CosmosDbDocument -Context <Context> [-KeyType <String>] [-Key <SecureString>
New-CosmosDbDocument -Account <String> [-KeyType <String>] [-Key <SecureString>]
[-Database <String>] -CollectionId <String> -DocumentBody <String>
[-IndexingDirective <String>] [-Upsert <Boolean>] [-PartitionKey <Object[]>]
[-Encoding <String>] [-RetrunJson <switch>] [<CommonParameters>]
[-Encoding <String>] [-ReturnJson <switch>] [<CommonParameters>]
```

## DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions docs/Set-CosmosDbDocument.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Update a document from a Cosmos DB collection.
Set-CosmosDbDocument -Context <Context> [-Database <String>] [-Key <SecureString>]
-CollectionId <String> -Id <String> -DocumentBody <String> [-IndexingDirective <String>]
[-PartitionKey <Object[]>] [-Encoding <String>] [-ETag <String>]
[-RetrunJson <switch>] [<CommonParameters>]
[-ReturnJson <switch>] [<CommonParameters>]
```

### Account
Expand All @@ -28,7 +28,7 @@ Set-CosmosDbDocument -Context <Context> [-Database <String>] [-Key <SecureString
Set-CosmosDbDocument -Account <String> [-Database <String>] [-Key <SecureString>]
[-KeyType <String>] -CollectionId <String> -Id <String> -DocumentBody <String>
[-IndexingDirective <String>] [-PartitionKey <Object[]>] [-Encoding <String>]
[-ETag <String>] [-RetrunJson <switch>] [<CommonParameters>]
[-ETag <String>] [-ReturnJson <switch>] [<CommonParameters>]
```

## DESCRIPTION
Expand Down

0 comments on commit 6f847d6

Please sign in to comment.