0033778: Documentation - Fix various typos found in codebase

This commit is contained in:
luzpaz
2024-07-26 03:51:12 -04:00
committed by GitHub
parent 9fcfec881c
commit 245febe036
62 changed files with 124 additions and 124 deletions

View File

@@ -72,7 +72,7 @@ public:
//! Gets array, can be null
void** GetArray() const { return myArray; }
//! Gets value by index, no acess validation
//! Gets value by index, no access validation
void* Value (const size_t theInd) const { return myArray[theInd]; }
public:

View File

@@ -26,10 +26,10 @@
//! to the system.
//!
//! This allocator can also be created per each working thread
//! hovewer it real multi-threading performance is dubious.
//! however its real multi-threading performance is dubious.
//!
//! Notice that this also means that existing pointers will be broken
//! and you shoould control that allocator is alive along all objects
//! and you should control that allocator is alive along all objects
//! allocated with him.
class NCollection_WinHeapAllocator : public NCollection_BaseAllocator
{