summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Threading/PinnableBufferCache.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/Threading/PinnableBufferCache.cs')
-rw-r--r--src/mscorlib/src/System/Threading/PinnableBufferCache.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mscorlib/src/System/Threading/PinnableBufferCache.cs b/src/mscorlib/src/System/Threading/PinnableBufferCache.cs
index 3f7853ce59..a896fa22e3 100644
--- a/src/mscorlib/src/System/Threading/PinnableBufferCache.cs
+++ b/src/mscorlib/src/System/Threading/PinnableBufferCache.cs
@@ -210,7 +210,7 @@ namespace System
}
/// <summary>
- /// See if we can promote the buffers to the free list. Returns true if sucessful.
+ /// See if we can promote the buffers to the free list. Returns true if successful.
/// </summary>
private bool AgePendingBuffers()
{
@@ -393,7 +393,7 @@ namespace System
private Func<object> m_factory;
/// <summary>
- /// Contains 'good' buffers to reuse. They are guarenteed to be Gen 2 ENFORCED!
+ /// Contains 'good' buffers to reuse. They are guaranteed to be Gen 2 ENFORCED!
/// </summary>
private ConcurrentStack<object> m_FreeList = new ConcurrentStack<object>();
/// <summary>
@@ -403,7 +403,7 @@ namespace System
/// </summary>
private List<object> m_NotGen2;
/// <summary>
- /// What whas the gen 1 count the last time re restocked? If it is now greater, then
+ /// What was the gen 1 count the last time re restocked? If it is now greater, then
/// we know that all objects are in Gen 2 so we don't have to check. Should be updated
/// every time something gets added to the m_NotGen2 list.
/// </summary>