summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Doe <github.john.doe@outlook.com>2017-08-13 23:47:41 -0700
committerJan Kotas <jkotas@microsoft.com>2017-08-13 23:47:41 -0700
commit4005bfb491ca3387aca9c5c7d0a93edabff33bfc (patch)
treeef1ab68b6531fecbcdecec9ab5ca1886e97f23ff
parentefdabef2be8097fbf7bbd72a54ae1d661228cc77 (diff)
downloadcoreclr-4005bfb491ca3387aca9c5c7d0a93edabff33bfc.tar.gz
coreclr-4005bfb491ca3387aca9c5c7d0a93edabff33bfc.tar.bz2
coreclr-4005bfb491ca3387aca9c5c7d0a93edabff33bfc.zip
Typo (#13360)
-rw-r--r--src/mscorlib/shared/System/Diagnostics/Tracing/EventSource.cs2
-rw-r--r--src/mscorlib/shared/System/Globalization/HijriCalendar.cs2
-rw-r--r--src/mscorlib/shared/System/Reflection/IReflect.cs4
-rw-r--r--tests/src/JIT/Directed/intrinsic/pow/pow2.cs2
4 files changed, 5 insertions, 5 deletions
diff --git a/src/mscorlib/shared/System/Diagnostics/Tracing/EventSource.cs b/src/mscorlib/shared/System/Diagnostics/Tracing/EventSource.cs
index c35e0781cc..7afcde75a8 100644
--- a/src/mscorlib/shared/System/Diagnostics/Tracing/EventSource.cs
+++ b/src/mscorlib/shared/System/Diagnostics/Tracing/EventSource.cs
@@ -5642,7 +5642,7 @@ namespace System.Diagnostics.Tracing
// make sure current activity is still in the set:
activeActivities[EventSource.InternalCurrentThreadActivityId] = Environment.TickCount;
}
- // add child activity to list of actives
+ // add child activity to list of activities
activeActivities[*childActivityID] = Environment.TickCount;
}
diff --git a/src/mscorlib/shared/System/Globalization/HijriCalendar.cs b/src/mscorlib/shared/System/Globalization/HijriCalendar.cs
index 1da8dfa0ba..59b354f534 100644
--- a/src/mscorlib/shared/System/Globalization/HijriCalendar.cs
+++ b/src/mscorlib/shared/System/Globalization/HijriCalendar.cs
@@ -187,7 +187,7 @@ namespace System.Globalization
set
{
- // NOTE: Check the value of Min/MaxAdavncedHijri with Arabic speakers to see if the assumption is good.
+ // NOTE: Check the value of Min/MaxAdvancedHijri with Arabic speakers to see if the assumption is good.
if (value < MinAdvancedHijri || value > MaxAdvancedHijri)
{
throw new ArgumentOutOfRangeException(
diff --git a/src/mscorlib/shared/System/Reflection/IReflect.cs b/src/mscorlib/shared/System/Reflection/IReflect.cs
index 51141ae47c..a7e84b6168 100644
--- a/src/mscorlib/shared/System/Reflection/IReflect.cs
+++ b/src/mscorlib/shared/System/Reflection/IReflect.cs
@@ -47,7 +47,7 @@ namespace System.Reflection
MemberInfo[] GetMembers(BindingFlags bindingAttr);
// Description of the Binding Process.
- // We must invoke a method that is accessable and for which the provided
+ // We must invoke a method that is accessible and for which the provided
// parameters have the most specific match. A method may be called if
// 1. The number of parameters in the method declaration equals the number of
// arguments provided to the invocation
@@ -59,7 +59,7 @@ namespace System.Reflection
// of methods is filtered by the name, number of arguments and a set of search modifiers
// defined in the Binder.
//
- // After the method is selected, it will be invoked. Accessability is checked
+ // After the method is selected, it will be invoked. Accessibility is checked
// at that point. The search may be control which set of methods are searched based
// upon the accessibility attribute associated with the method.
//
diff --git a/tests/src/JIT/Directed/intrinsic/pow/pow2.cs b/tests/src/JIT/Directed/intrinsic/pow/pow2.cs
index 8193137ee5..978051e33b 100644
--- a/tests/src/JIT/Directed/intrinsic/pow/pow2.cs
+++ b/tests/src/JIT/Directed/intrinsic/pow/pow2.cs
@@ -79,7 +79,7 @@ internal class pow2
//Instead of using 10 * Double.Epsilon as the maximum allowed Delta
//we can use a small value based on the precision of double (15-16 digits)
- //to accomodate slight differences in the pow intrinsic on ARM
+ //to accommodate slight differences in the pow intrinsic on ARM
double maxDelta = 9.9E-16;
//straight