Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Hanna <jon@hackcraft.net>2017-02-17 21:31:00 +0300
committerStephen Toub <stoub@microsoft.com>2017-02-17 21:31:00 +0300
commitf0ccd9742065ee2aa296448fe3dd38ef6ff77af9 (patch)
tree2d0dc4a505cfdbb0a2125fa7df241c034d95dcb2 /src/System.Diagnostics.Tracing
parente7574660aa3257baccaf5a612dde7f0b9268ffe9 (diff)
Fix several typos (#16264)
* Fix several typos coment → comment rangecheck → range check testcase → test case deffer → defer everytime → every time whitespaces → whitespace (whitespace is uncountable) white space → whitespace white spaces → whitespace the the → the a → a nametest → name test scaned → scanned and and → and undecision → indecision are no whitespace → is no whitespace Whidbey casing Everett casing unkown → unknown messsage → message mesage → message mesasage → message publically → publicly (publically is attested but questionable). exceptionto → exception to mutatable → mutable implemention → implementation hadnt → hadn't couldnt → couldn't wouldnt → wouldn't wont → won't isntead → instead preocessor → processor particural → particular interations → iterations enterying → entering stoppped → stopped stoped → stopped verication → verification compuatation → computation revisisted → revisited partioner → partitioner lock'ed → locked table'd → table would hashtable'ed → hashtabled (still coining, but tabled is analogous) intialize → initialize calcuate → calculate perfom → perform performr → perform matthing → matching corect → correct thorw → throw supress → suppress reqeust → request mutliple → multiple ot → to trival → trivial upto → up to specfices → specifies patttern → pattern descrepancy → discrepancy explict → explicit implict → implicit usign → using non-sensical → nonsensical contination → continuation producs → products childred → children parametr → parameter approriate → appropriate insted → instead expection → exception successsfully → successfully funtion → function unqiue → unique apparant → apparent expception → exception conatined → contained apssed → passed propogate → propagate cutoms → custom currrent → current curent → current concurent → concurrent coplted → completed unexcepted → Unexpected (where the latter seems more appropriate) to to → to abd → and refence → reference particiant → participant cuurrent → current extratc → extract cparticipant → participant ehich → which choosen → chosen mske → make alread → already aquire → acquire droppping → dropping intial → initial tru → true aprticipant → participant excption → exception sempahore → semaphore fileds → fields threashold → threshold duting → during didnt → didn't atribute → attribute serliazation → serialization localy → locally channge → change prperties → properties attrbute → attribute sentinal → sentinel shoukd → should existant → existent commnent → comment expeted → expected propert → property commnet → comment datat → data ther → the mach → match inhertiance → inheritance convience → convenience completley → completely otheriwse → otherwise actuall → actual inefficent → inefficient defalut → default comparsion → comparison charcters → characters postion → position aleady → already charater → character incosistent → inconsistent seperate → separate veify → verify currentlly → currently corect → correct betwwen → between omiting → omitting readr → reader compae → compare allways → always thown → thrown with with → with usecase → use case avare → aware lexem → lexeme grammer → grammar oposite → opposite overrided → overridden everithig → everything chages → changes memeber → member proerties → properties identifer → identifier doesnot → does not deriaved → derived varialble → variable * defered -> deferred * Revert changes within clrcompression. * Revert underreach → under-reach * Fix casing broken while fixing spelling. * Use type name instead of "Diagnostic sources"
Diffstat (limited to 'src/System.Diagnostics.Tracing')
-rw-r--r--src/System.Diagnostics.Tracing/src/System/Diagnostics/Tracing/ActivityTracker.cs2
-rw-r--r--src/System.Diagnostics.Tracing/src/System/Diagnostics/Tracing/EventProvider.cs2
-rw-r--r--src/System.Diagnostics.Tracing/src/System/Diagnostics/Tracing/EventSource.cs4
-rw-r--r--src/System.Diagnostics.Tracing/src/System/Diagnostics/Tracing/TraceLogging/InvokeTypeInfo.cs6
-rw-r--r--src/System.Diagnostics.Tracing/src/System/Diagnostics/Tracing/TraceLogging/TraceLoggingDataType.cs2
5 files changed, 8 insertions, 8 deletions
diff --git a/src/System.Diagnostics.Tracing/src/System/Diagnostics/Tracing/ActivityTracker.cs b/src/System.Diagnostics.Tracing/src/System/Diagnostics/Tracing/ActivityTracker.cs
index a7124a26ff..b48b88d63e 100644
--- a/src/System.Diagnostics.Tracing/src/System/Diagnostics/Tracing/ActivityTracker.cs
+++ b/src/System.Diagnostics.Tracing/src/System/Diagnostics/Tracing/ActivityTracker.cs
@@ -598,7 +598,7 @@ namespace System.Diagnostics.Tracing
/// while that task is running. Thus m_current 'flows' to any task that is caused by the current thread that
/// last set it.
///
- /// This variable points a a linked list that represents all Activities that have started but have not stopped.
+ /// This variable points a linked list that represents all Activities that have started but have not stopped.
/// </summary>
AsyncLocal<ActivityInfo> m_current;
bool m_checkedForEnable;
diff --git a/src/System.Diagnostics.Tracing/src/System/Diagnostics/Tracing/EventProvider.cs b/src/System.Diagnostics.Tracing/src/System/Diagnostics/Tracing/EventProvider.cs
index c84db27eab..6d9c9db0d7 100644
--- a/src/System.Diagnostics.Tracing/src/System/Diagnostics/Tracing/EventProvider.cs
+++ b/src/System.Diagnostics.Tracing/src/System/Diagnostics/Tracing/EventProvider.cs
@@ -138,7 +138,7 @@ namespace System.Diagnostics.Tracing
}
//
- // implement Dispose Pattern to early deregister from ETW insted of waiting for
+ // implement Dispose Pattern to early deregister from ETW instead of waiting for
// the finalizer to call deregistration.
// Once the user is done with the provider it needs to call Close() or Dispose()
// If neither are called the finalizer will unregister the provider anyway
diff --git a/src/System.Diagnostics.Tracing/src/System/Diagnostics/Tracing/EventSource.cs b/src/System.Diagnostics.Tracing/src/System/Diagnostics/Tracing/EventSource.cs
index f5e8059137..0dad59e2df 100644
--- a/src/System.Diagnostics.Tracing/src/System/Diagnostics/Tracing/EventSource.cs
+++ b/src/System.Diagnostics.Tracing/src/System/Diagnostics/Tracing/EventSource.cs
@@ -2247,7 +2247,7 @@ namespace System.Diagnostics.Tracing
SendManifest(manifestBuilder.CreateManifest());
}
- // We use this low level routine to to bypass the enabled checking, since the eventSource itself is only partially inited.
+ // We use this low level routine to bypass the enabled checking, since the eventSource itself is only partially inited.
fixed (char* msgStringPtr = msgString)
{
EventDescriptor descr = new EventDescriptor(0, 0, 0, (byte)level, 0, 0, keywords);
@@ -4291,7 +4291,7 @@ namespace System.Diagnostics.Tracing
break;
if (cur == this)
{
- // Found our Listener, remove references to to it in the eventSources
+ // Found our Listener, remove references to it in the eventSources
prev.m_Next = cur.m_Next; // Remove entry.
RemoveReferencesToListenerInEventSources(cur);
break;
diff --git a/src/System.Diagnostics.Tracing/src/System/Diagnostics/Tracing/TraceLogging/InvokeTypeInfo.cs b/src/System.Diagnostics.Tracing/src/System/Diagnostics/Tracing/TraceLogging/InvokeTypeInfo.cs
index 3e5997bc9b..5d4573d702 100644
--- a/src/System.Diagnostics.Tracing/src/System/Diagnostics/Tracing/TraceLogging/InvokeTypeInfo.cs
+++ b/src/System.Diagnostics.Tracing/src/System/Diagnostics/Tracing/TraceLogging/InvokeTypeInfo.cs
@@ -80,14 +80,14 @@ namespace System.Diagnostics.Tracing
if (this.properties != null)
{
var membersNames = new List<string>();
- var memebersValues = new List<object>();
+ var membersValues = new List<object>();
for (int i = 0; i < this.properties.Length; i++)
{
var propertyValue = properties[i].propertyInfo.GetValue(value);
membersNames.Add(properties[i].name);
- memebersValues.Add(properties[i].typeInfo.GetData(propertyValue));
+ membersValues.Add(properties[i].typeInfo.GetData(propertyValue));
}
- return new EventPayload(membersNames, memebersValues);
+ return new EventPayload(membersNames, membersValues);
}
return null;
diff --git a/src/System.Diagnostics.Tracing/src/System/Diagnostics/Tracing/TraceLogging/TraceLoggingDataType.cs b/src/System.Diagnostics.Tracing/src/System/Diagnostics/Tracing/TraceLogging/TraceLoggingDataType.cs
index 529948daf8..cc416a96d9 100644
--- a/src/System.Diagnostics.Tracing/src/System/Diagnostics/Tracing/TraceLogging/TraceLoggingDataType.cs
+++ b/src/System.Diagnostics.Tracing/src/System/Diagnostics/Tracing/TraceLogging/TraceLoggingDataType.cs
@@ -182,7 +182,7 @@ namespace System.Diagnostics.Tracing
/// <summary>
/// Core type.
- /// Special case: Struct indicates that this field plus the the
+ /// Special case: Struct indicates that this field plus the
/// subsequent N logical fields are to be considered as one logical
/// field (i.e. a nested structure). The OutType is used to encode N.
/// The maximum value for N is 127. This field has no payload by