diff --git a/src/Accounts/Authentication.ResourceManager/Common/PSObjectExtensions.cs b/src/Accounts/Authentication.ResourceManager/Common/PSObjectExtensions.cs
index 913fd2f12237..5af26b7cfbc1 100644
--- a/src/Accounts/Authentication.ResourceManager/Common/PSObjectExtensions.cs
+++ b/src/Accounts/Authentication.ResourceManager/Common/PSObjectExtensions.cs
@@ -48,7 +48,7 @@ public static bool HasProperty(this PSObject source, string name)
///
/// The type of the property to look for
/// The PSObject to check
- /// The name of the proeprty to look for
+ /// The name of the property to look for
/// true if the PSObject has a property with the given name, otherwise false
public static bool HasProperty(this PSObject source, string name)
{
@@ -211,7 +211,7 @@ public static void Populate(this IDictionary dictionary, string
/// Populate a list from a proprty of the given PSObject
///
/// The list to populate
- /// The name of the proeprty contiaing the list
+ /// The name of the property contiaing the list
/// The PSObject to populate the list from
public static void Populate(this IList list, string name, PSObject other)
{
diff --git a/src/Accounts/Authentication.Test/PSSerializationTests.cs b/src/Accounts/Authentication.Test/PSSerializationTests.cs
index b905706ffd54..7c6d480ae4ac 100644
--- a/src/Accounts/Authentication.Test/PSSerializationTests.cs
+++ b/src/Accounts/Authentication.Test/PSSerializationTests.cs
@@ -251,8 +251,8 @@ IAzureContext GetDefaultContext()
VersionProfile = "2017_09_25"
};
- context.SetProperty("ContextProeprty1", "ContextProperty1Value1", "ContextProperty1Value2");
- context.SetProperty("ContextProeprty2", "ContextProperty2Value1", "ContextProperty2Value2");
+ context.SetProperty("ContextProperty1", "ContextProperty1Value1", "ContextProperty1Value2");
+ context.SetProperty("ContextProperty2", "ContextProperty2Value1", "ContextProperty2Value2");
return context;
}
diff --git a/src/Storage/Storage.Management.Test/ScenarioTests/StorageDataPlaneTests.ps1 b/src/Storage/Storage.Management.Test/ScenarioTests/StorageDataPlaneTests.ps1
index 31eb988a46c4..15affe08e835 100644
--- a/src/Storage/Storage.Management.Test/ScenarioTests/StorageDataPlaneTests.ps1
+++ b/src/Storage/Storage.Management.Test/ScenarioTests/StorageDataPlaneTests.ps1
@@ -518,7 +518,7 @@ function Test-Common
$storageAccountKeyValue = $(Get-AzStorageAccountKey -ResourceGroupName $ResourceGroupName -Name $StorageAccountName)[0].Value
$storageContext = New-AzStorageContext -StorageAccountName $StorageAccountName -StorageAccountKey $storageAccountKeyValue
- # wait at most 120*5s=600s for the set sevice proeprty updated on server.
+ # wait at most 120*5s=600s for the set sevice property updated on server.
$retryTimes = 120
# B/F/Q Service properties, in same code path
diff --git a/src/Storage/Storage.Management/Blob/DisableAzureStorageBlobRestorePolicy.cs b/src/Storage/Storage.Management/Blob/DisableAzureStorageBlobRestorePolicy.cs
index 4cf191a04f2d..2eea05a6826c 100644
--- a/src/Storage/Storage.Management/Blob/DisableAzureStorageBlobRestorePolicy.cs
+++ b/src/Storage/Storage.Management/Blob/DisableAzureStorageBlobRestorePolicy.cs
@@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.Management.Storage
///
/// Modify Azure Storage service properties
///
- [CmdletOutputBreakingChange(typeof(PSRestorePolicy), ChangeDescription = "The deprecated proeprty LastEnabledTime will be removed in a future release.")]
+ [CmdletOutputBreakingChange(typeof(PSRestorePolicy), ChangeDescription = "The deprecated property LastEnabledTime will be removed in a future release.")]
[Cmdlet("Disable", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + StorageBlobRestorePolicy, SupportsShouldProcess = true, DefaultParameterSetName = AccountNameParameterSet), OutputType(typeof(PSRestorePolicy))]
public class DisableAzStorageBlobRestorePolicyCommand : StorageBlobBaseCmdlet
{
diff --git a/src/Storage/Storage.Management/Blob/EnableAzureStorageBlobRestorePolicy.cs b/src/Storage/Storage.Management/Blob/EnableAzureStorageBlobRestorePolicy.cs
index 573d2b8e856a..b119c1412e64 100644
--- a/src/Storage/Storage.Management/Blob/EnableAzureStorageBlobRestorePolicy.cs
+++ b/src/Storage/Storage.Management/Blob/EnableAzureStorageBlobRestorePolicy.cs
@@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.Management.Storage
///
/// Modify Azure Storage service properties
///
- [CmdletOutputBreakingChange(typeof(PSRestorePolicy), ChangeDescription = "The deprecated proeprty LastEnabledTime will be removed in a future release.")]
+ [CmdletOutputBreakingChange(typeof(PSRestorePolicy), ChangeDescription = "The deprecated property LastEnabledTime will be removed in a future release.")]
[Cmdlet("Enable", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + StorageBlobRestorePolicy, DefaultParameterSetName = AccountNameParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSRestorePolicy))]
public class EnableAzStorageBlobRestorePolicyCommand : StorageBlobBaseCmdlet
{
diff --git a/src/Storage/Storage.Management/Blob/GetAzureStorageBlobServiceProperties.cs b/src/Storage/Storage.Management/Blob/GetAzureStorageBlobServiceProperties.cs
index b68063e13c8e..e22d4400b584 100644
--- a/src/Storage/Storage.Management/Blob/GetAzureStorageBlobServiceProperties.cs
+++ b/src/Storage/Storage.Management/Blob/GetAzureStorageBlobServiceProperties.cs
@@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.Management.Storage
///
/// Modify Azure Storage service properties
///
- [CmdletOutputBreakingChange(typeof(PSBlobServiceProperties), ChangeDescription = "The deprecated proeprty RestorePolicy.LastEnabledTime will be removed in a future release.")]
+ [CmdletOutputBreakingChange(typeof(PSBlobServiceProperties), ChangeDescription = "The deprecated property RestorePolicy.LastEnabledTime will be removed in a future release.")]
[Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + StorageBlobServiceProperty, DefaultParameterSetName = AccountNameParameterSet), OutputType(typeof(PSBlobServiceProperties))]
public class GetAzStorageBlobServicePropertyCommand : StorageBlobBaseCmdlet
{
diff --git a/src/Storage/Storage.Management/Blob/UpdateAzureStorageBlobServiceProperties.cs b/src/Storage/Storage.Management/Blob/UpdateAzureStorageBlobServiceProperties.cs
index 7d6393038420..6502f136e95b 100644
--- a/src/Storage/Storage.Management/Blob/UpdateAzureStorageBlobServiceProperties.cs
+++ b/src/Storage/Storage.Management/Blob/UpdateAzureStorageBlobServiceProperties.cs
@@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.Management.Storage
///
/// Modify Azure Storage service properties
///
- [CmdletOutputBreakingChange(typeof(PSBlobServiceProperties), ChangeDescription = "The deprecated proeprty RestorePolicy.LastEnabledTime will be removed in a future release.")]
+ [CmdletOutputBreakingChange(typeof(PSBlobServiceProperties), ChangeDescription = "The deprecated property RestorePolicy.LastEnabledTime will be removed in a future release.")]
[Cmdlet("Update", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + StorageBlobServiceProperty, SupportsShouldProcess = true, DefaultParameterSetName = AccountNameParameterSet), OutputType(typeof(PSBlobServiceProperties))]
public class UpdateAzStorageBlobServicePropertyCommand : StorageBlobBaseCmdlet
{