summaryrefslogtreecommitdiff
path: root/src/utilcode
diff options
context:
space:
mode:
authorJohn Doe <github.john.doe@outlook.com>2018-05-24 23:22:42 -0700
committerJan Kotas <jkotas@microsoft.com>2018-05-24 23:22:42 -0700
commit8e48db2c113052ef18cdafb43e114a8633864ec0 (patch)
tree866d4dcfe565cfaefbb4f4718d4fad4420b665ac /src/utilcode
parent6468753a39d2419083cd842497ae2fc0f35c143a (diff)
downloadcoreclr-8e48db2c113052ef18cdafb43e114a8633864ec0.tar.gz
coreclr-8e48db2c113052ef18cdafb43e114a8633864ec0.tar.bz2
coreclr-8e48db2c113052ef18cdafb43e114a8633864ec0.zip
Typo (#18122)
* acquringing -> acquiring * Activ -> Active * activley -> actively * acutal -> actual * bIncomingIPAdddefed -> bIncomingIPAddRefed * adddr -> addr * readding -> reading * Addfunction -> AddFunction * additionnal -> additional * Additonal -> Additional * Additonally -> Additionally * Addresss -> Address * addtion -> addition * aded -> added * aditional -> additional * adjustements -> adjustments * Adress -> Address * afer -> after * aformentioned -> aforementioned * afte -> after * agains -> against * agaisnt -> against * aggresively -> aggressively * aggreates -> aggregates * aggregious -> egregious * aginst -> against * agregates -> aggregates * Agressive -> Aggressive * ahve -> have * ajdust -> adjust * ajust -> adjust * alement -> element * algoritm -> algorithm * alighnment -> alignment * alignmant -> alignment * constraits -> constraints * Allcator -> Allocator * alllocate -> allocate * alloacted -> allocated * allocatate -> allocate * allocatoror -> allocator * alloctaed -> allocated * alloction -> allocation * alloted -> allotted * allt he -> all the * alltogether -> altogether * alocate -> allocate * alocated -> allocated * Alocates -> Allocates * alogrithm -> algorithm * aloocate -> allocate * alot -> a lot * alwasy -> always * alwyas -> always * alwys -> always
Diffstat (limited to 'src/utilcode')
-rw-r--r--src/utilcode/clrhost_nodependencies.cpp2
-rw-r--r--src/utilcode/debug.cpp2
-rw-r--r--src/utilcode/sbuffer.cpp2
-rw-r--r--src/utilcode/securitywrapper.cpp2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/utilcode/clrhost_nodependencies.cpp b/src/utilcode/clrhost_nodependencies.cpp
index 62453b7e81..9b66717afa 100644
--- a/src/utilcode/clrhost_nodependencies.cpp
+++ b/src/utilcode/clrhost_nodependencies.cpp
@@ -200,7 +200,7 @@ ClrDebugState *CLRInitDebugState()
pNewClrDebugState = (ClrDebugState*)::HeapAlloc(GetProcessHeap(), 0, sizeof(ClrDebugState));
if (pNewClrDebugState != NULL)
{
- // Only allocate a DbgStateLockData if its owning ClrDebugState was successfully alloctaed
+ // Only allocate a DbgStateLockData if its owning ClrDebugState was successfully allocated
pNewLockData = (DbgStateLockData *)::HeapAlloc(GetProcessHeap(), 0, sizeof(DbgStateLockData));
}
#define GetProcessHeap() Dont_Use_GetProcessHeap()
diff --git a/src/utilcode/debug.cpp b/src/utilcode/debug.cpp
index ed4f0445fc..3d8704826b 100644
--- a/src/utilcode/debug.cpp
+++ b/src/utilcode/debug.cpp
@@ -307,7 +307,7 @@ BOOL LaunchJITDebugger()
// This function is called in order to ultimately return an out of memory
// failed hresult. But this guy will check what environment you are running
// in and give an assert for running in a debug build environment. Usually
-// out of memory on a dev machine is a bogus alloction, and this allows you
+// out of memory on a dev machine is a bogus allocation, and this allows you
// to catch such errors. But when run in a stress envrionment where you are
// trying to get out of memory, assert behavior stops the tests.
//*****************************************************************************
diff --git a/src/utilcode/sbuffer.cpp b/src/utilcode/sbuffer.cpp
index b97e12614f..35f7c0463f 100644
--- a/src/utilcode/sbuffer.cpp
+++ b/src/utilcode/sbuffer.cpp
@@ -88,7 +88,7 @@ void SBuffer::Replace(const Iterator &i, COUNT_T deleteSize, COUNT_T insertSize)
COUNT_T startRange = (COUNT_T) (i.m_ptr - m_buffer);
// The PRECONDITION(CheckIterationRange(i, deleteSize)) should check this in
// contract-checking builds, but this ensures we don't integer overflow if someone
- // passes in an aggregious deleteSize by capping it to the remaining length in the
+ // passes in an egregious deleteSize by capping it to the remaining length in the
// buffer.
if ((COUNT_T)(m_buffer + m_size - i.m_ptr) < deleteSize)
{
diff --git a/src/utilcode/securitywrapper.cpp b/src/utilcode/securitywrapper.cpp
index 0f146ab55e..10672b7004 100644
--- a/src/utilcode/securitywrapper.cpp
+++ b/src/utilcode/securitywrapper.cpp
@@ -694,7 +694,7 @@ Sid Win32SecurityDescriptor::GetOwner()
//-----------------------------------------------------------------------------
// Initialize this instance of a SecurityDescriptor with the SD for the handle.
-// The handle must ahve READ_CONTROL permissions to do this.
+// The handle must have READ_CONTROL permissions to do this.
// Throws on error.
//-----------------------------------------------------------------------------
HRESULT Win32SecurityDescriptor::InitFromHandleNoThrow(HANDLE h)