From 3c8092f3b80204d539c33539d16e53fdbda424b3 Mon Sep 17 00:00:00 2001 From: Volodymyr Korniichuk <9173519@gmail.com> Date: Thu, 5 Aug 2021 11:23:59 +0300 Subject: [PATCH] Update FAQ.md Fixed double mention of push_back(void) in description of additional functions of the list container (push_front should be mentioned) --- doc/FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/FAQ.md b/doc/FAQ.md index e80172b9..1444c483 100644 --- a/doc/FAQ.md +++ b/doc/FAQ.md @@ -211,7 +211,7 @@ EASTL additions/amendments to std STL * vector and string have set_capacity(). * string has sprintf(), append_sprintf(), trim(), compare_i(), make_lower(), make_upper(). * deque allows you to specify the subarray size. -* list has a push_back(void) and push_back(void) function. +* list has a push_front(void) and push_back(void) function. * hash_map, hash_set, etc. have find_as(). EASTL coverage of TR1 (tr1 refers to proposed additions for the next C++ standard library, ~2008)