Skip to content

Commit 1932d34

Browse files
authored
Fix spacing in examples
1 parent 823000f commit 1932d34

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ResourceManager/KeyVault/Commands.KeyVault/help/Set-AzureKeyVaultSecret.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ cmdlet creates a new version of that secret.
2727

2828
### Example 1: Modify the value of a secret using default attributes
2929
```
30-
PS C:\>$Secret = ConvertTo-SecureString -String 'Password' -AsPlainText -Force
30+
PS C:\> $Secret = ConvertTo-SecureString -String 'Password' -AsPlainText -Force
3131
PS C:\> Set-AzureKeyVaultSecret -VaultName 'Contoso' -Name 'ITSecret' -SecretValue $Secret
3232
```
3333

@@ -40,7 +40,7 @@ secret value becomes the value stored in $Secret.
4040

4141
### Example 2: Modify the value of a secret using custom attributes
4242
```
43-
PS C:\>$Secret = ConvertTo-SecureString -String 'Password' -AsPlainText -Force
43+
PS C:\> $Secret = ConvertTo-SecureString -String 'Password' -AsPlainText -Force
4444
PS C:\> $Expires = (Get-Date).AddYears(2).ToUniversalTime()
4545
PS C:\> $NBF =(Get-Date).ToUniversalTime()
4646
PS C:\> $Tags = @{ 'Severity' = 'medium'; 'IT' = null }
@@ -237,4 +237,4 @@ Microsoft.Azure.Commands.KeyVault.Models.Secret
237237

238238
[Get-AzureKeyVaultSecret](./Get-AzureKeyVaultSecret.md)
239239

240-
[Remove-AzureKeyVaultSecret](./Remove-AzureKeyVaultSecret.md)
240+
[Remove-AzureKeyVaultSecret](./Remove-AzureKeyVaultSecret.md)

0 commit comments

Comments
 (0)