Skip to content

Commit cde7047

Browse files
authored
Spelling Fixes (#28053)
1 parent 289bfbb commit cde7047

23 files changed

+28
-28
lines changed

src/HDInsight/HDInsight.Management.Sdk/Customizations/Models/ClusterNodeType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public enum ClusterNodeType
2424
WorkerNode,
2525

2626
/// <summary>
27-
/// The zookeper nodes of the cluster.
27+
/// The zookeeper nodes of the cluster.
2828
/// </summary>
2929
ZookeeperNode,
3030

src/HDInsight/HDInsight.Management.Sdk/Generated/Models/KafkaRestProperties.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public KafkaRestProperties()
2828
/// <param name="clientGroupInfo">The information of AAD security group.
2929
/// </param>
3030

31-
/// <param name="configurationOverride">The configurations that need to be overriden.
31+
/// <param name="configurationOverride">The configurations that need to be overridden.
3232
/// </param>
3333
public KafkaRestProperties(ClientGroupInfo clientGroupInfo = default(ClientGroupInfo), System.Collections.Generic.IDictionary<string, string> configurationOverride = default(System.Collections.Generic.IDictionary<string, string>))
3434

@@ -51,7 +51,7 @@ public KafkaRestProperties()
5151
public ClientGroupInfo ClientGroupInfo {get; set; }
5252

5353
/// <summary>
54-
/// Gets or sets the configurations that need to be overriden.
54+
/// Gets or sets the configurations that need to be overridden.
5555
/// </summary>
5656
[Newtonsoft.Json.JsonProperty(PropertyName = "configurationOverride")]
5757
public System.Collections.Generic.IDictionary<string, string> ConfigurationOverride {get; set; }

src/HDInsight/HDInsight/ClusterCreateHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ private static string GetDefaultVmSizeFromDictionary(string clusterType, string
455455
{
456456
if (!clusterTypeAndVmSizeDict.TryGetValue(clusterType, out vmSize))
457457
{
458-
// backend will use the string "*" to stand for it is applicable for all clsuter type.
458+
// backend will use the string "*" to stand for it is applicable for all cluster type.
459459
clusterTypeAndVmSizeDict.TryGetValue(Constants.ClusterType.AllClusterType, out vmSize);
460460
}
461461
}

src/HDInsight/HDInsight/HDInsightCmdletBase.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ protected string GetClusterConnection(string resourceGroupName, string clusterNa
7171
state.Equals("Operational", StringComparison.OrdinalIgnoreCase)))
7272
{
7373
throw new NotSupportedException(
74-
string.Format("The cluster {0} is in the {1} state and canot be used at this time.", clusterName,
74+
string.Format("The cluster {0} is in the {1} state and cannot be used at this time.", clusterName,
7575
state));
7676
}
7777

@@ -135,7 +135,7 @@ protected Dictionary<string, Dictionary<string, string>> GetDefaultVmsizesConfig
135135
{
136136
BillingResponseListResult billingResponseListResult = HDInsightManagementClient.ListBillingSpecs(location);
137137

138-
/* The result is KeyValuePair<ZOOKEEPERNODEROLE, KeyValulePair<SPARK, STANDARD_A2_V2>> */
138+
/* The result is KeyValuePair<ZOOKEEPERNODEROLE, KeyValuePair<SPARK, STANDARD_A2_V2>> */
139139
var nodeTypeAndClusterTypeAndVmSizePairs = billingResponseListResult.VMSizeFilters.Where(filter => filter.FilterMode.Equals(FilterMode.Default)).SelectMany(x =>
140140
{
141141
var clusterTypeAndVmSizePairs = x.ClusterFlavors.SelectMany(clusterType => x.VMSizes, (clusterType, vmSize) =>

src/HDInsight/HDInsight/ManagementCommands/DisableAzureHDInsightMonitoringCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class DisableAzureHDInsightMonitoringCommand : HDInsightCmdletBase
2727
[Parameter(
2828
Position = 0,
2929
Mandatory = true,
30-
HelpMessage = "Gets or sets the name of the cluster to disable monitroing.",
30+
HelpMessage = "Gets or sets the name of the cluster to disable monitoring.",
3131
ValueFromPipelineByPropertyName = true)]
3232
[Alias("ClusterName")]
3333
public string Name { get; set; }

src/HDInsight/HDInsight/Models/Management/AzureHDInsightAzureMonitor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public AzureHDInsightAzureMonitor(AzureMonitorResponse azureMonitorResponse)
2525
}
2626

2727
/// <summary>
28-
/// Bool indicates whether the cluster has enabled montioring or not.
28+
/// Bool indicates whether the cluster has enabled monitoring or not.
2929
/// </summary>
3030
public bool ClusterMonitoringEnabled { get; set; }
3131

src/HDInsight/HDInsight/Models/Management/AzureHDInsightAzureMonitorAgent.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public AzureHDInsightAzureMonitorAgent(AzureMonitorResponse azureMonitorResponse
2525
}
2626

2727
/// <summary>
28-
/// Bool indicates whether the cluster has enabled montioring or not.
28+
/// Bool indicates whether the cluster has enabled monitoring or not.
2929
/// </summary>
3030
public bool ClusterMonitoringEnabled { get; set; }
3131

src/HDInsight/HDInsight/Models/Management/AzureHDInsightClusterNodeType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public enum AzureHDInsightClusterNodeType
3030
WorkerNode=1,
3131

3232
/// <summary>
33-
/// The zookeper nodes of the cluster.
33+
/// The zookeeper nodes of the cluster.
3434
/// </summary>
3535
ZookeeperNode=2,
3636

src/HDInsight/HDInsight/Models/Management/AzureHDInsightMonitoring.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public AzureHDInsightMonitoring(ClusterMonitoringResponse clusterMonitoringRespo
2525
}
2626

2727
/// <summary>
28-
/// Bool indicates whether the cluster has enabled montioring or not.
28+
/// Bool indicates whether the cluster has enabled monitoring or not.
2929
/// </summary>
3030
public bool ClusterMonitoringEnabled { get; set; }
3131

src/HDInsight/HDInsight/Models/Management/AzureHDInsightSecurityProfile.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.HDInsight.Models
2121
{
2222

2323
/// <summary>
24-
/// Represents and AzureHDInsightSecurityProfile which contans the parameters to create secure cluster.
24+
/// Represents and AzureHDInsightSecurityProfile which contains the parameters to create secure cluster.
2525
/// </summary>
2626
public class AzureHDInsightSecurityProfile
2727
{

0 commit comments

Comments
 (0)