Skip to content

Commit 8ed741e

Browse files
committed
minor fix for uppercase to lowercase
1 parent 2ff9ce1 commit 8ed741e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ServiceManagement/Storage/Commands.Storage/Common/Cmdlet/NewAzureStorageContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ internal CloudStorageAccount GetStorageAccountWithAzureEnvironment(StorageCreden
353353
}
354354
catch (ArgumentException e)
355355
{
356-
throw new ArgumentException(e.Message + " " + String.Format(CultureInfo.CurrentCulture, Resources.ValidEnvironmentName, EnvironmentName.AzureCloud, EnvironmentName.AzureChinaCloud));
356+
throw new ArgumentException(e.Message + " " + string.Format(CultureInfo.CurrentCulture, Resources.ValidEnvironmentName, EnvironmentName.AzureCloud, EnvironmentName.AzureChinaCloud));
357357
}
358358
}
359359

0 commit comments

Comments
 (0)