diff --git a/aspnetcore/security/data-protection/implementation/key-storage-providers.md b/aspnetcore/security/data-protection/implementation/key-storage-providers.md index 0fb40b3788..a17a5344f7 100644 --- a/aspnetcore/security/data-protection/implementation/key-storage-providers.md +++ b/aspnetcore/security/data-protection/implementation/key-storage-providers.md @@ -46,7 +46,7 @@ If the web app is running as an Azure service, connection string can be used to ```csharp string connectionString = ""; string containerName = "my-key-container"; -string blobName = "keys.xml" +string blobName = "keys.xml"; BlobContainerClient container = new BlobContainerClient(connectionString, containerName); // optional - provision the container automatically