summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeff Foster <jeff.foster@acm.org>2015-08-05 12:01:51 +0100
committerJeff Foster <jeff.foster@acm.org>2015-08-05 12:01:51 +0100
commit715b5b262fb4c391bbee830adefbf625e8123e82 (patch)
treea991d3d1405d5ecd7aaa9e5abeabdac72cf831d8 /src
parent8bcc2888e7d7805beb903b2c2f05214ce5ddac02 (diff)
downloadcoreclr-715b5b262fb4c391bbee830adefbf625e8123e82.tar.gz
coreclr-715b5b262fb4c391bbee830adefbf625e8123e82.tar.bz2
coreclr-715b5b262fb4c391bbee830adefbf625e8123e82.zip
Fix typos of teh
Diffstat (limited to 'src')
-rw-r--r--src/mscorlib/Common/PinnableBufferCache.cs2
-rw-r--r--src/mscorlib/src/System/Convert.cs2
-rw-r--r--src/mscorlib/src/System/Globalization/RegionInfo.cs2
-rw-r--r--src/mscorlib/src/System/Text/BaseCodePageEncoding.cs2
-rw-r--r--src/mscorlib/src/System/Text/GB18030Encoding.cs2
-rw-r--r--src/mscorlib/src/System/Text/ISCIIEncoding.cs2
-rw-r--r--src/mscorlib/src/System/Text/Latin1Encoding.cs2
-rw-r--r--src/mscorlib/src/System/Threading/Thread.cs4
8 files changed, 9 insertions, 9 deletions
diff --git a/src/mscorlib/Common/PinnableBufferCache.cs b/src/mscorlib/Common/PinnableBufferCache.cs
index 7368c2d927..dec896c5ec 100644
--- a/src/mscorlib/Common/PinnableBufferCache.cs
+++ b/src/mscorlib/Common/PinnableBufferCache.cs
@@ -403,7 +403,7 @@ namespace System
return true;
}
- // Move buffers from teh free list back to the non-aged list. If we don't use them by next time, then we'll consider trimming them.
+ // Move buffers from the free list back to the non-aged list. If we don't use them by next time, then we'll consider trimming them.
PinnableBufferCacheEventSource.Log.TrimExperiment(m_CacheName, m_buffersUnderManagement, freeCount, trimSize);
object buffer;
for (int i = 0; i < trimSize; i++)
diff --git a/src/mscorlib/src/System/Convert.cs b/src/mscorlib/src/System/Convert.cs
index 435b9a8380..b4725146d7 100644
--- a/src/mscorlib/src/System/Convert.cs
+++ b/src/mscorlib/src/System/Convert.cs
@@ -2463,7 +2463,7 @@ namespace System {
/// </summary>
/// <param name="inputPtr">Pointer to first input char</param>
/// <param name="inputLength">Number of input chars</param>
- /// <param name="destPtr">Pointer to location for teh first result byte</param>
+ /// <param name="destPtr">Pointer to location for the first result byte</param>
/// <param name="destLength">Max length of the preallocated result buffer</param>
/// <returns>If the result buffer was not large enough to write all result bytes, return -1;
/// Otherwise return the number of result bytes actually produced.</returns>
diff --git a/src/mscorlib/src/System/Globalization/RegionInfo.cs b/src/mscorlib/src/System/Globalization/RegionInfo.cs
index 64287c1105..2497239a3c 100644
--- a/src/mscorlib/src/System/Globalization/RegionInfo.cs
+++ b/src/mscorlib/src/System/Globalization/RegionInfo.cs
@@ -151,7 +151,7 @@ namespace System.Globalization {
#region Serialization
//
- // m_cultureId is needed for serialization only to detect the case if teh region info is created using the name or using the LCID.
+ // m_cultureId is needed for serialization only to detect the case if the region info is created using the name or using the LCID.
// in case m_cultureId is zero means that the RigionInfo is created using name. otherwise it is created using LCID.
//
diff --git a/src/mscorlib/src/System/Text/BaseCodePageEncoding.cs b/src/mscorlib/src/System/Text/BaseCodePageEncoding.cs
index a0a031846a..d0b50ab41a 100644
--- a/src/mscorlib/src/System/Text/BaseCodePageEncoding.cs
+++ b/src/mscorlib/src/System/Text/BaseCodePageEncoding.cs
@@ -182,7 +182,7 @@ namespace System.Text
[System.Security.SecurityCritical] // auto-generated_required
void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context)
{
- // Make sure to get teh base stuff too This throws if info is null
+ // Make sure to get the base stuff too This throws if info is null
SerializeEncoding(info, context);
Contract.Assert(info!=null, "[BaseCodePageEncoding.GetObjectData] Expected null info to throw");
diff --git a/src/mscorlib/src/System/Text/GB18030Encoding.cs b/src/mscorlib/src/System/Text/GB18030Encoding.cs
index a0548c36e4..8de31f6b30 100644
--- a/src/mscorlib/src/System/Text/GB18030Encoding.cs
+++ b/src/mscorlib/src/System/Text/GB18030Encoding.cs
@@ -141,7 +141,7 @@ namespace System.Text
[System.Security.SecurityCritical] // auto-generated_required
void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context)
{
- // Make sure to get teh base stuff too This throws if info is null
+ // Make sure to get the base stuff too This throws if info is null
SerializeEncoding(info, context);
Contract.Assert(info!=null, "[GB18030.GetObjectData] Expected null info to throw");
diff --git a/src/mscorlib/src/System/Text/ISCIIEncoding.cs b/src/mscorlib/src/System/Text/ISCIIEncoding.cs
index 63efd74656..cf603b46d8 100644
--- a/src/mscorlib/src/System/Text/ISCIIEncoding.cs
+++ b/src/mscorlib/src/System/Text/ISCIIEncoding.cs
@@ -95,7 +95,7 @@ namespace System.Text
[System.Security.SecurityCritical] // auto-generated_required
void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context)
{
- // Make sure to get teh base stuff too This throws if info is null
+ // Make sure to get the base stuff too This throws if info is null
SerializeEncoding(info, context);
Contract.Assert(info!=null, "[ISCIIEncoding.GetObjectData] Expected null info to throw");
diff --git a/src/mscorlib/src/System/Text/Latin1Encoding.cs b/src/mscorlib/src/System/Text/Latin1Encoding.cs
index 478a0ce839..71c8570d79 100644
--- a/src/mscorlib/src/System/Text/Latin1Encoding.cs
+++ b/src/mscorlib/src/System/Text/Latin1Encoding.cs
@@ -43,7 +43,7 @@ namespace System.Text
[System.Security.SecurityCritical] // auto-generated_required
void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context)
{
- // Make sure to get teh base stuff too This throws if info is null
+ // Make sure to get the base stuff too This throws if info is null
SerializeEncoding(info, context);
Contract.Assert(info!=null, "[Latin1Encoding.GetObjectData] Expected null info to throw");
diff --git a/src/mscorlib/src/System/Threading/Thread.cs b/src/mscorlib/src/System/Threading/Thread.cs
index c0706d0953..9668947f96 100644
--- a/src/mscorlib/src/System/Threading/Thread.cs
+++ b/src/mscorlib/src/System/Threading/Thread.cs
@@ -1059,7 +1059,7 @@ namespace System.Threading {
// If the culture is safe (not customized or created in current app domain)
// then the FCALL will return a reference to that culture otherwise the
// FCALL will return failure. In case of failure we'll return the default culture.
- // If the app domain owning a customized culture that is set to teh thread and this
+ // If the app domain owning a customized culture that is set to the thread and this
// app domain get unloaded there is a code to clean up the culture from the thread
// using the code in AppDomain::ReleaseDomainStores.
@@ -1175,7 +1175,7 @@ namespace System.Threading {
// If the culture is safe (not customized or created in current app domain)
// then the FCALL will return a reference to that culture otherwise the
// FCALL will return failure. In case of failure we'll return the default culture.
- // If the app domain owning a customized culture that is set to teh thread and this
+ // If the app domain owning a customized culture that is set to the thread and this
// app domain get unloaded there is a code to clean up the culture from the thread
// using the code in AppDomain::ReleaseDomainStores.