summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVance Morrison <vancem@microsoft.com>2017-10-30 10:50:17 -0700
committerGitHub <noreply@github.com>2017-10-30 10:50:17 -0700
commit2f4acd6880b8245033290924c683d3847a4d022f (patch)
tree6467b1362dafd684af88b902b7c794e5c0f41d7f /src
parentcd9c0ed411daf8a83baa705a9e54870ecdf95e9f (diff)
downloadcoreclr-2f4acd6880b8245033290924c683d3847a4d022f.tar.gz
coreclr-2f4acd6880b8245033290924c683d3847a4d022f.tar.bz2
coreclr-2f4acd6880b8245033290924c683d3847a4d022f.zip
Fix spelling error in comment (#14745)
Diffstat (limited to 'src')
-rw-r--r--src/mscorlib/shared/System/Diagnostics/Tracing/EventSource.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mscorlib/shared/System/Diagnostics/Tracing/EventSource.cs b/src/mscorlib/shared/System/Diagnostics/Tracing/EventSource.cs
index aadb5e329c..f6d4899843 100644
--- a/src/mscorlib/shared/System/Diagnostics/Tracing/EventSource.cs
+++ b/src/mscorlib/shared/System/Diagnostics/Tracing/EventSource.cs
@@ -2683,7 +2683,7 @@ namespace System.Diagnostics.Tracing
m_deferredCommands = commandArgs; // create the first entry
else
{
- // We have one or more etries, find the last one and add it to that.
+ // We have one or more entries, find the last one and add it to that.
EventCommandEventArgs lastCommand = m_deferredCommands;
while (lastCommand.nextCommand != null)
lastCommand = lastCommand.nextCommand;