Skip to content

Commit cea4e1c

Browse files
authored
fix typo (Azure#13987)
1 parent 7adee56 commit cea4e1c

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

src/Accounts/Accounts/Account/ConnectAzureRmAccount.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -258,12 +258,12 @@ protected override void StopProcessing()
258258

259259
public override void ExecuteCmdlet()
260260
{
261-
Guid subscrptionIdGuid;
261+
Guid subscriptionIdGuid;
262262
string subscriptionName = null;
263263
string subscriptionId = null;
264264
if (MyInvocation.BoundParameters.ContainsKey(nameof(Subscription)))
265265
{
266-
if (Guid.TryParse(Subscription, out subscrptionIdGuid))
266+
if (Guid.TryParse(Subscription, out subscriptionIdGuid))
267267
{
268268
subscriptionId = Subscription;
269269
}
@@ -397,12 +397,12 @@ public override void ExecuteCmdlet()
397397
InitializeProfileProvider();
398398
}
399399

400-
if(!AzureSession.Instance.TryGetComponent(nameof(CommonUtilities), out CommonUtilities commonUtitilies))
400+
if(!AzureSession.Instance.TryGetComponent(nameof(CommonUtilities), out CommonUtilities commonUtilities))
401401
{
402-
commonUtitilies = new CommonUtilities();
403-
AzureSession.Instance.RegisterComponent(nameof(CommonUtilities), () => commonUtitilies);
402+
commonUtilities = new CommonUtilities();
403+
AzureSession.Instance.RegisterComponent(nameof(CommonUtilities), () => commonUtilities);
404404
}
405-
if(!commonUtitilies.IsDesktopSession() && IsUsingInteractiveAuthentication())
405+
if(!commonUtilities.IsDesktopSession() && IsUsingInteractiveAuthentication())
406406
{
407407
WriteWarning(Resources.InteractiveAuthNotSupported);
408408
return;

src/Accounts/Authentication/Properties/Resources.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Accounts/Authentication/Properties/Resources.resx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,6 @@
359359
<value>Password is missing and no cache found for the current user.</value>
360360
</data>
361361
<data name="FailedToMigrateAdal2Msal" xml:space="preserve">
362-
<value>INITIALZATION: Failed to migrate ADAL token to MSAL token with error : {0}</value>
362+
<value>INITIALIZATION: Failed to migrate ADAL token to MSAL token with error : {0}</value>
363363
</data>
364364
</root>

0 commit comments

Comments
 (0)