Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* Abbrevation -> Abbreviation

* accesible -> accessible

* acordingly -> accordingly

* Acount -> Account

* Acroding -> According

* actaul -> actual

* Activty -> Activity

* actully -> actually

* Actvitiy -> Activity

* acutal -> actual


Commit migrated from dotnet/corefx@f4ff3c8
  • Loading branch information
github-john-doe authored and jkotas committed Jun 28, 2018
1 parent d8c1f4c commit f4b4b59
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public void CreatePartDefinition_SharedTypeMarkedWithNonSharedMetadata_ShouldHav
// CompositionConstants.PartCreationPolicyMetadataName should be ignored
Assert.NotEqual(CreationPolicy.NonShared, definition.Metadata.GetValue<CreationPolicy>(CompositionConstants.PartCreationPolicyMetadataName));

// Key ShouldNotBeIgnored should actully be in the dictionary
// Key ShouldNotBeIgnored should actually be in the dictionary
Assert.Equal("Value", definition.Metadata["ShouldNotBeIgnored"]);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,7 @@ public void InferXmlSchema_IgnoreNameSpaces() //Ignoring 2 namespaces
[Fact]
public void InferXmlSchema_inferingTables1()
{
//Acroding to the msdn documantaion :
//According to the msdn documantaion :
//ms-help://MS.MSDNQTR.2003FEB.1033/cpguide/html/cpconinferringtables.htm
//Elements that have attributes specified in them will result in inferred tables

Expand All @@ -710,7 +710,7 @@ public void InferXmlSchema_inferingTables1()
[Fact]
public void InferXmlSchema_inferingTables2()
{
//Acroding to the msdn documantaion :
//According to the msdn documantaion :
//ms-help://MS.MSDNQTR.2003FEB.1033/cpguide/html/cpconinferringtables.htm
//Elements that have child elements will result in inferred tables

Expand All @@ -734,7 +734,7 @@ public void InferXmlSchema_inferingTables2()
[Fact]
public void InferXmlSchema_inferingTables3()
{
//Acroding to the msdn documantaion :
//According to the msdn documantaion :
//ms-help://MS.MSDNQTR.2003FEB.1033/cpguide/html/cpconinferringtables.htm
//The document, or root, element will result in an inferred table if it has attributes
//or child elements that will be inferred as columns.
Expand All @@ -760,7 +760,7 @@ public void InferXmlSchema_inferingTables3()
[Fact]
public void InferXmlSchema_inferingTables4()
{
//Acroding to the msdn documantaion :
//According to the msdn documantaion :
//ms-help://MS.MSDNQTR.2003FEB.1033/cpguide/html/cpconinferringtables.htm
//The document, or root, element will result in an inferred table if it has attributes
//or child elements that will be inferred as columns.
Expand All @@ -785,7 +785,7 @@ public void InferXmlSchema_inferingTables4()
[Fact]
public void InferXmlSchema_inferingTables5()
{
//Acroding to the msdn documantaion :
//According to the msdn documantaion :
//ms-help://MS.MSDNQTR.2003FEB.1033/cpguide/html/cpconinferringtables.htm
//Elements that repeat will result in a single inferred table

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
namespace System.Data.Common
{
/// <summary>
/// This class defines the data structure for ActvitiyId used for correlated tracing between client (bid trace event) and server (XEvent).
/// This class defines the data structure for ActivityId used for correlated tracing between client (bid trace event) and server (XEvent).
/// It also includes all the APIs used to access the ActivityId. Note: ActivityId is thread based which is stored in TLS.
/// </summary>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace System.Diagnostics
/// <summary>
/// Performance Counter component.
/// This class provides support for NT Performance counters.
/// It handles both the existing counters (accesible by Perf Registry Interface)
/// It handles both the existing counters (accessible by Perf Registry Interface)
/// and user defined (extensible) counters.
/// This class is a part of a larger framework, that includes the perf dll object and
/// perf service.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public async Task CorrelationManager_MutateStackPop()
}

[Fact]
public async Task CorrelationManager_ActivtyIdAcrossAwait()
public async Task CorrelationManager_ActivityIdAcrossAwait()
{
Guid g = Guid.NewGuid();
Trace.CorrelationManager.ActivityId = g;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ private Principal FindPrincipalByIdentRefHelper(
{
ds.SizeLimit = 2; // so we can efficiently check for duplicates

// If we are searching for AuthPrincpal or Principal in the end we will construct the acutal type
// If we are searching for AuthPrincpal or Principal in the end we will construct the actual type
// i.e. if the objects objectClass is User we will construct a UserPrincipal even though they searched for Principal.FindByIdentity
// At this time we don't know the actual object type so we have to ask AD for all the attributes of the derived types so they are there
// when we go to load the principal.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public void Ctor_Context()
public void Ctor_NullContext_ThrowsArgumentException()
{
AssertExtensions.Throws<ArgumentException>(null, () => new ComputerPrincipal(null));
AssertExtensions.Throws<ArgumentException>(null, () => new ComputerPrincipal(null, "samAcountName", "password", enabled: true));
AssertExtensions.Throws<ArgumentException>(null, () => new ComputerPrincipal(null, "samAccountName", "password", enabled: true));
}

[Fact]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ public EnumerationOptions() : this (null, InfiniteTimeout, 1, true, true, false,



//Constructor that specifies flags as individual values - we need to set the flags acordingly !
//Constructor that specifies flags as individual values - we need to set the flags accordingly !
/// <summary>
/// <para>Initializes a new instance of the <see cref='System.Management.EnumerationOptions'/> class to be used for queries or enumerations,
/// allowing the user to specify values for the different options.</para>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
namespace System.Buffers.Text.Tests
{
//
// Used to model DateTime and DateTimeOffsets that have "illegal" values (e.g. Jan 32) This is used to generate a subset of DateTime
// Used to model DateTime and DateTimeOffsets that have "illegal" values (e.g. Jan 32) This is used to generate a subset of DateTime
// and DateTimeOffset ParserTestData objects.
//
public sealed class PseudoDateTime
Expand Down Expand Up @@ -85,18 +85,18 @@ public string RFormatString
dayAbbreviation = "Sun";
}

string monthAbbrevation;
string monthAbbreviation;
if (Month >= 1 && Month <= 12)
{
monthAbbrevation = s_monthAbbreviations[Month - 1];
monthAbbreviation = s_monthAbbreviations[Month - 1];
}
else
{
// Pick something legal here as we're expecting code coverage of an error case and we don't want a bad day abbreviation to bypass that.
monthAbbrevation = "Jan";
monthAbbreviation = "Jan";
}

return dayAbbreviation + ", " + Day.ToString("D2", CultureInfo.InvariantCulture) + " " + monthAbbrevation + " " + Year.ToString("D4", CultureInfo.InvariantCulture) + " "
return dayAbbreviation + ", " + Day.ToString("D2", CultureInfo.InvariantCulture) + " " + monthAbbreviation + " " + Year.ToString("D4", CultureInfo.InvariantCulture) + " "
+ Hour.ToString("D2", CultureInfo.InvariantCulture) + ":" + Minute.ToString("D2", CultureInfo.InvariantCulture) + ":" + Second.ToString("D2", CultureInfo.InvariantCulture) + " "
+ "GMT";
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1162,7 +1162,7 @@ internal enum TxLookup
// For async flow scenarios, we should not allow flowing of transaction across app domains. To prevent transaction from flowing across
// AppDomain/Remoting boundaries, we are using ConditionalWeakTable to hold the actual ambient transaction and store only a object reference
// in CallContext. When TransactionScope is used to invoke a call across AppDomain/Remoting boundaries, only the object reference will be sent
// across and not the actaul ambient transaction which is stashed away in the ConditionalWeakTable.
// across and not the actual ambient transaction which is stashed away in the ConditionalWeakTable.
//
internal static class CallContextCurrentData
{
Expand Down

0 comments on commit f4b4b59

Please sign in to comment.