Skip to content

Commit 1555129

Browse files
author
pi1024e
committed
Fixed Typos and undid unneeded changes.
1 parent 2144997 commit 1555129

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -518,6 +518,7 @@
518518

519519
#### Az.Batch
520520
* Updated cmdlets with plural nouns to singular, and deprecated plural names.
521+
* Fixed typo in help message and documentation to capitalize Windows
521522

522523
#### Az.Cdn
523524
* Updated cmdlets with plural nouns to singular, and deprecated plural names.

src/Batch/Batch/ComputeNodeUsers/NewBatchComputeNodeUserCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public class NewBatchComputeNodeUserCommand : BatchObjectModelCmdletBase
4040
[ValidateNotNullOrEmpty]
4141
public PSComputeNode ComputeNode { get; set; }
4242

43-
[Parameter(Mandatory = true, HelpMessage = "The name of the local windows account created.")]
43+
[Parameter(Mandatory = true, HelpMessage = "The name of the local Windows account created.")]
4444
[ValidateNotNullOrEmpty]
4545
public string Name { get; set; }
4646

src/Batch/Batch/Models/NewComputeNodeUserParameters.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public NewComputeNodeUserParameters(BatchAccountContext context, string poolId,
2626
{ }
2727

2828
/// <summary>
29-
/// The name of the local windows account created.
29+
/// The name of the local Windows account created.
3030
/// </summary>
3131
public string ComputeNodeUserName { get; set; }
3232

src/DataFactory/DataFactoryV2/help/New-AzDataFactoryEncryptValue.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ PS C:\> New-AzDataFactoryEncryptValue -DataFactoryName "UncycloADF" -GatewayName "W
6565
```
6666

6767
The first command uses **ConvertTo-SecureString** to convert the specified string to a secure string, and then stores that object in the $Value variable.
68-
The second command uses **Get-Credential** to collect the windows authentication (user name and password), and then stores that **PSCredential** object in the $Credential variable.
68+
The second command uses **Get-Credential** to collect the Windows authentication (user name and password), and then stores that **PSCredential** object in the $Credential variable.
6969
The third command creates an encrypted value for the object stored in $Value and $Credential for the specified data factory, gateway, resource group, and linked service type.
7070

7171
### Example 4: Encrypt credentials for HDFS linked service
@@ -78,7 +78,7 @@ New-AzDataFactoryEncryptValue -DataFactoryName "MyDataFactory" -ResourceGroupNam
7878

7979
The **ConvertTo-SecureString** command converts the specified string to a secure string.
8080
The **New-Object** command creates a PSCredential object using the secure username and password strings.
81-
Instead, you could use the **Get-Credential** command to collect windows authentication (user name and password), and then store the returned **PSCredential** object in the $credential variable as shown in previous examples.
81+
Instead, you could use the **Get-Credential** command to collect Windows authentication (user name and password), and then store the returned **PSCredential** object in the $credential variable as shown in previous examples.
8282
The **New-AzDataFactoryEncryptValue** command creates an encrypted value for the object stored in $Credential for the specified data factory, gateway, resource group, and linked service type.
8383

8484
### Example 5: Encrypt credentials for ODBC linked service

src/MarketplaceOrdering/MarketplaceOrdering/help/Get-AzMarketplaceTerms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ RetrieveDatetime : <RetrieveDatetime>
3838
## PARAMETERS
3939

4040
### -DefaultProfile
41-
The credentials, account, tenant, and subscription used for communication with azure.
41+
The credentials, account, tenant, and subscription used for communication with Azure.
4242

4343
```yaml
4444
Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer

0 commit comments

Comments
 (0)