Skip to content

Commit b7599d2

Browse files
committed
Merge pull request #965 from rhencke/patch-1
Fix a bunch of typos.
2 parents 13c321d + f7497c8 commit b7599d2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/ServiceManagement/Common/Commands.ScenarioTest/Common/TestEnvironmentFactory.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ public abstract class TestEnvironmentFactory
3636
public const string SubscriptionIdKey = ConnectionStringFields.SubscriptionId;
3737

3838
/// <summary>
39-
/// The key inside the connection string for the subscription identifier
39+
/// The key inside the connection string for the AAD user ID
4040
/// </summary>
4141
public const string AADUserIdKey = ConnectionStringFields.UserId;
4242

4343
/// <summary>
44-
/// The key inside the connection string for the subscription identifier
44+
/// The key inside the connection string for the AAD password
4545
/// </summary>
4646
public const string AADPasswordKey = ConnectionStringFields.Password;
4747

@@ -51,7 +51,7 @@ public abstract class TestEnvironmentFactory
5151
public const string BaseUriKey = ConnectionStringFields.BaseUri;
5252

5353
/// <summary>
54-
/// The key inside the connection string for the AAD client ID"
54+
/// The key inside the connection string for the AAD client ID
5555
/// </summary>
5656
public const string ClientID = ConnectionStringFields.AADClientId;
5757
public const string ClientIdDefault = "1950a258-227b-4e31-a9cf-717495945fc2";
@@ -70,7 +70,7 @@ public abstract class TestEnvironmentFactory
7070
public const string StorageAccountKey = "AZURE_STORAGE_ACCOUNT";
7171

7272
/// <summary>
73-
/// A raw token to be used for authentication with the give subscription ID
73+
/// A raw token to be used for authentication with the given subscription ID
7474
/// </summary>
7575
public const string RawToken = ConnectionStringFields.RawToken;
7676

@@ -84,9 +84,9 @@ public virtual TestEnvironment GetTestEnvironment()
8484
protected abstract TestEnvironment GetTestEnvironmentFromContext();
8585

8686
/// <summary>
87-
/// Return test credentials and URI using AAD auth for an OrgID account. Use this emthod with causion, it may take a dependency on ADAL
87+
/// Return test credentials and URI using AAD auth for an OrgID account. Use this method with caution - it may take a dependency on ADAL.
8888
/// </summary>
89-
/// <returns>The test credentials, or null if nthe appropriate environment variablke is not set.</returns>
89+
/// <returns>The test credentials, or null if the appropriate environment variable is not set.</returns>
9090
protected virtual TestEnvironment GetOrgIdTestEnvironment(string orgIdVariable)
9191
{
9292
TestEnvironment orgIdEnvironment = null;
@@ -181,7 +181,7 @@ private static string GetOrgId(string orgIdVariable)
181181
/// <returns>A dictionary of keys and values from the connection string</returns>
182182
public static IDictionary<string, string> ParseConnectionString(string connectionString)
183183
{
184-
// hacky connection string parser. We should replace with more robust connection strign parsing
184+
// hacky connection string parser. We should replace with more robust connection string parsing
185185
IDictionary<string, string> settings = new Dictionary<string, string>();
186186
string[] pairs = connectionString.Split(new char[] { ';' });
187187
foreach (string pair in pairs)

0 commit comments

Comments
 (0)