From 7bd45053eba490626a3990e83f80427a5fa43969 Mon Sep 17 00:00:00 2001 From: Peer de Bakker <36886300+pde-bakk@users.noreply.github.com> Date: Tue, 27 Oct 2020 03:29:19 +0100 Subject: [PATCH] Fixed typo in Deque comments (#394) --- include/EASTL/deque.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/EASTL/deque.h b/include/EASTL/deque.h index 0451bca3..c2d55b1c 100644 --- a/include/EASTL/deque.h +++ b/include/EASTL/deque.h @@ -329,7 +329,7 @@ namespace eastl /// but current efforts have resulted in less efficient and more fragile code. /// The logic of this class doesn't lend itself to a clean implementation. /// It turns out that deques are one of the least likely classes you'd want this - /// behaviour in, so until this functionality becomes very imporantant to somebody, + /// behaviour in, so until this functionality becomes very important to somebody, /// we will leave it as-is. It can probably be solved by adding some extra code to /// the Do* functions and adding good comments explaining the situation. ///