JANITORIAL: Fix extremly typo in stack.h

This commit is contained in:
Hubert Maier 2024-05-14 08:48:20 +02:00 committed by Eugene Sandulenko
parent 39f3b632d5
commit a56c9f6f43

View File

@ -37,7 +37,7 @@ namespace Common {
*/
/**
* Extremly simple fixed size stack class.
* Extremely simple fixed size stack class.
*/
template<class T, uint MAX_SIZE = 10>
class FixedStack {