From 134766b6a4fdbf4414aa86a884fbe9c925f0425d Mon Sep 17 00:00:00 2001 From: mikamiwa <54436690+mikamiwa@users.noreply.github.com> Date: Wed, 26 Feb 2020 17:23:19 +0800 Subject: [PATCH] fix typo --- include/cppcore/Memory/TPoolAllocator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/cppcore/Memory/TPoolAllocator.h b/include/cppcore/Memory/TPoolAllocator.h index a28ca42..72c1e15 100644 --- a/include/cppcore/Memory/TPoolAllocator.h +++ b/include/cppcore/Memory/TPoolAllocator.h @@ -31,7 +31,7 @@ namespace CPPCore { /// @class TPoolAllocator /// @ingroup CPPCore /// -/// @brief This class implements a simple poll-based allocation scheme. +/// @brief This class implements a simple pool-based allocation scheme. /// Initially you have to define its size. Each allocation will be done from this initially created /// pool. You have to release all pooled instances after the usage. /// This allocation scheme is fast and does no call any new-calls during the lifetime of the