Skip to content

Commit 6448588

Browse files
authored
Spelling Fixes (#28067)
1 parent 423a24f commit 6448588

File tree

33 files changed

+41
-41
lines changed

33 files changed

+41
-41
lines changed

src/Network/Network/AzureFirewallFqdnTag/AzureFirewallFqdnTagHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public static List<string> MapUserInputToAllowedFqdnTags(IEnumerable<string> use
3535

3636
var allowedFqdnTags = GetAzureFirewallAllowedFqdnTags(azureFirewallFqdnTagClient);
3737

38-
// Accept user input case insensistive
38+
// Accept user input case insensitive
3939
var userAcceptedFqdnTags = allowedFqdnTags.Aggregate(
4040
new Dictionary<string, string>(),
4141
(userAcceptedVersions, allowedFqdnTag) =>

src/Network/Network/AzureFirewallPolicy/NetworkRuleCondition/NewAzureFirewallPolicyNetworkRuleCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public override void Execute()
9898
}
9999

100100
// Only one of DestinationAddress/DestinationIpGroup or DestinationFqdns is allowed
101-
// Eventually we may want to have exclusitivity with IpGroup too but for now not doing that
101+
// Eventually we may want to have exclusivity with IpGroup too but for now not doing that
102102
if (((DestinationAddress != null) || (DestinationIpGroup != null)) && (DestinationFqdn != null))
103103
{
104104
throw new ArgumentException("Both DestinationAddress or DestinationIpGroup and DestinationFqdns not allowed");

src/Network/Network/Common/NetworkClient.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ public async Task<AzureOperationResponse<string>> GeneratevpnclientpackageWithHt
212212
DateTime startTime = DateTime.UtcNow;
213213
DateTime giveUpAt = DateTime.UtcNow.AddMinutes(3);
214214

215-
// Send the Get locationResults request for operaitonId till either we get StatusCode 200 or it time outs (3 minutes in this case)
215+
// Send the Get locationResults request for operationId till either we get StatusCode 200 or it time outs (3 minutes in this case)
216216
while (true)
217217
{
218218
HttpRequestMessage newHttpRequest = new HttpRequestMessage();
@@ -364,7 +364,7 @@ public async Task<AzureOperationResponse<string>> GenerateVpnProfileWithHttpMess
364364
DateTime startTime = DateTime.UtcNow;
365365
DateTime giveUpAt = DateTime.UtcNow.AddMinutes(3);
366366

367-
// Send the Get locationResults request for operaitonId till either we get StatusCode 200 or it time outs (3 minutes in this case)
367+
// Send the Get locationResults request for operationId till either we get StatusCode 200 or it time outs (3 minutes in this case)
368368
while (true)
369369
{
370370
HttpRequestMessage newHttpRequest = new HttpRequestMessage();
@@ -503,7 +503,7 @@ public async Task<AzureOperationResponse<string>> GetVpnProfilePackageUrlWithHtt
503503
DateTime startTime = DateTime.UtcNow;
504504
DateTime giveUpAt = DateTime.UtcNow.AddMinutes(3);
505505

506-
// Send the Get locationResults request for operaitonId till either we get StatusCode 200 or it time outs (3 minutes in this case)
506+
// Send the Get locationResults request for operationId till either we get StatusCode 200 or it time outs (3 minutes in this case)
507507
while (true)
508508
{
509509
HttpRequestMessage newHttpRequest = new HttpRequestMessage();
@@ -785,7 +785,7 @@ public async Task<AzureOperationResponse<string>> ExecuteOperationWithHttpMessag
785785
DateTime startTime = DateTime.UtcNow;
786786
DateTime giveUpAt = DateTime.UtcNow.AddMinutes(3);
787787

788-
// Send the Get locationResults request for operaitonId till either we get StatusCode 200 or it time outs (3 minutes in this case)
788+
// Send the Get locationResults request for operationId till either we get StatusCode 200 or it time outs (3 minutes in this case)
789789
while (true)
790790
{
791791
HttpRequestMessage newHttpRequest = new HttpRequestMessage();

src/Network/Network/Common/NetworkResourceManagerProfile.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ private static void Initialize()
354354
// MNM to CNM
355355
cfg.CreateMap<MNM.IPAddressAvailabilityResult, CNM.PSIPAddressAvailabilityResult>();
356356

357-
// Avaliable endpoint services
357+
// Available endpoint services
358358
// CNM to MNM
359359
cfg.CreateMap<CNM.PSEndpointServiceResult, MNM.EndpointServiceResult>();
360360

@@ -973,7 +973,7 @@ private static void Initialize()
973973
// MNM to CNM
974974
cfg.CreateMap<MNM.NetworkSecurityGroup, CNM.PSNetworkSecurityGroup>();
975975

976-
// NetworkSecrityRule
976+
// NetworkSecurityRule
977977
// CNM to MNM
978978
cfg.CreateMap<CNM.PSSecurityRule, MNM.SecurityRule>()
979979
.AfterMap((src, dest) =>
@@ -1155,7 +1155,7 @@ private static void Initialize()
11551155
cfg.CreateMap<MNM.ExpressRouteCircuitRoutesTable, CNM.PSExpressRouteCircuitRoutesTable>();
11561156
cfg.CreateMap<MNM.ExpressRouteCircuitRoutesTableSummary, CNM.PSExpressRouteCircuitRoutesTableSummary>();
11571157

1158-
// ExoressRouteCircuitAuthorization
1158+
// ExpressRouteCircuitAuthorization
11591159
// CNM to MNM
11601160
cfg.CreateMap<CNM.PSExpressRouteCircuitAuthorization, MNM.ExpressRouteCircuitAuthorization>();
11611161

src/Network/Network/Cortex/RouteMap/NewAzureRmRouteMapCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public override void Execute()
9191
this.VirtualHubName = parsedResourceId.ResourceName;
9292
}
9393

94-
// this will thorw if hub does not exist.
94+
// this will throw if hub does not exist.
9595
IsParentVirtualHubPresent(this.ResourceGroupName, this.VirtualHubName);
9696

9797
PSRouteMap routeMap = new PSRouteMap

src/Network/Network/Cortex/RouteMap/RemoveAzureRmRouteMapCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ public override void Execute()
129129
}
130130
}
131131

132-
// this will thorw if hub does not exist.
132+
// this will throw if hub does not exist.
133133
IsParentVirtualHubPresent(this.ResourceGroupName, this.VirtualHubName);
134134

135135
ConfirmAction(

src/Network/Network/Cortex/RouteMap/UpdateAzureRmRouteMapCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ public override void Execute()
136136
}
137137
}
138138

139-
// this will thorw if hub does not exist.
139+
// this will throw if hub does not exist.
140140
IsParentVirtualHubPresent(this.ResourceGroupName, this.VirtualHubName);
141141

142142
if (this.RouteMapRule != null)

src/Network/Network/Cortex/RoutingIntent/NewAzureRmRoutingIntentCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public override void Execute()
9292
this.ParentResourceName = parsedResourceId.ResourceName;
9393
}
9494

95-
// this will thorw if hub does not exist.
95+
// this will throw if hub does not exist.
9696
IsParentVirtualHubPresent(this.ResourceGroupName, this.ParentResourceName);
9797

9898
PSRoutingIntent routingIntent = new PSRoutingIntent

src/Network/Network/Cortex/RoutingIntent/RemoveAzureRmRoutingIntentCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public class RemoveAzureRmRoutingIntentCommand : RoutingIntentBaseCmdlet
5252
[Parameter(
5353
Mandatory = true,
5454
ParameterSetName = CortexParameterSetNames.ByVirtualHubObject,
55-
HelpMessage = "Name of therouting intent resource.")]
55+
HelpMessage = "Name of the routing intent resource.")]
5656
public string Name { get; set; }
5757

5858
[Alias("VirtualHub", "ParentVirtualHub")]
@@ -130,7 +130,7 @@ public override void Execute()
130130
}
131131
}
132132

133-
// this will thorw if hub does not exist.
133+
// this will throw if hub does not exist.
134134
IsParentVirtualHubPresent(this.ResourceGroupName, this.ParentResourceName);
135135

136136
ConfirmAction(

src/Network/Network/Cortex/RoutingIntent/SetAzureRmRoutingIntentCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ public override void Execute()
137137
}
138138
}
139139

140-
// this will thorw if hub does not exist.
140+
// this will throw if hub does not exist.
141141
IsParentVirtualHubPresent(this.ResourceGroupName, this.ParentResourceName);
142142

143143
if (this.RoutingPolicy != null)

0 commit comments

Comments
 (0)