Skip to content

Commit b936d6f

Browse files
(Azure CXP) added a missing quotation mark
Added a missing quotation mark in a code snippet https://github.com/MicrosoftDocs/azure-docs/issues/53150
1 parent 2527796 commit b936d6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/app-service/environment/certificates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ The certificate will be available by all the apps in the same app service plan a
8080

8181
To perform testing, you can create a self signed certificate and generate a *.cer* file with the following PowerShell:
8282

83-
$certificate = New-SelfSignedCertificate -certstorelocation cert:\localmachine\my -dnsname "*.internal-contoso.com","*.scm.internal-contoso.com
83+
$certificate = New-SelfSignedCertificate -certstorelocation cert:\localmachine\my -dnsname "*.internal-contoso.com","*.scm.internal-contoso.com"
8484

8585
$certThumbprint = "cert:\localMachine\my\" + $certificate.Thumbprint
8686
$password = ConvertTo-SecureString -String "CHANGETHISPASSWORD" -Force -AsPlainText

0 commit comments

Comments
 (0)