From d5d6513a4f4d3f3cd2dd778d1c4f21df19e0c9ae Mon Sep 17 00:00:00 2001 From: ppenguin Date: Tue, 18 Aug 2020 11:06:17 +0800 Subject: [PATCH] Fix typo --- doc/BestPractices.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/BestPractices.md b/doc/BestPractices.md index 6a0a571a..cadb7fa7 100644 --- a/doc/BestPractices.md +++ b/doc/BestPractices.md @@ -78,7 +78,7 @@ EASTL fixed containers include: To create a fixed_set, you can use the following code: ```cpp -fixed_set intSet; // Create a set capable of holding 250 elements. +fixed_set intSet; // Create a set capable of holding 25 elements. intSet.push_back(37); ```