Skip to content

Commit cc39ee6

Browse files
authored
Fix: Missing close-parenthesis in GetToken example
1 parent 765aabb commit cc39ee6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

articles/storage/blobs/storage-encrypt-decrypt-blobs-key-vault.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,8 @@ In the Main() method, add the following code.
125125
// This is standard code to interact with Blob storage.
126126
StorageCredentials creds = new StorageCredentials(
127127
CloudConfigurationManager.GetSetting("accountName"),
128-
CloudConfigurationManager.GetSetting("accountKey");
128+
CloudConfigurationManager.GetSetting("accountKey")
129+
);
129130
CloudStorageAccount account = new CloudStorageAccount(creds, useHttps: true);
130131
CloudBlobClient client = account.CreateCloudBlobClient();
131132
CloudBlobContainer contain = client.GetContainerReference(CloudConfigurationManager.GetSetting("container"));

0 commit comments

Comments
 (0)