This commit is contained in:
Kawe Mazidjatari 2022-12-26 17:01:14 +01:00
parent 08a550327a
commit 1371bb1f38
2 changed files with 3 additions and 3 deletions

View File

@ -4348,7 +4348,7 @@ void
dlfree(void *mem)
{
/*
Consolidate freed chunks with preceeding or succeeding bordering
Consolidate freed chunks with preceding or succeeding bordering
free chunks, if they exist, and then place in a bin. Intermixed
with special cases for top, dv, mmapped chunks, and usage errors.
*/

View File

@ -564,7 +564,7 @@ int CUtlBuffer::PeekStringLength()
if (!IsValid())
return 0;
// Eat preceeding whitespace
// Eat preceding whitespace
int nOffset = 0;
if (IsText())
{
@ -673,7 +673,7 @@ int CUtlBuffer::PeekDelimitedStringLength(CUtlCharConversion* pConv, bool bActua
if (!IsText() || !pConv)
return PeekStringLength();
// Eat preceeding whitespace
// Eat preceding whitespace
int nOffset = 0;
if (IsText())
{