From 60335c28bf98da9f58564adafc91f31156d3dcd9 Mon Sep 17 00:00:00 2001 From: Shaurya Vardhan Singh <41507129+wulforr@users.noreply.github.com> Date: Sun, 14 Oct 2018 22:04:36 +0530 Subject: [PATCH] Fixed typo error (#18545) --- client/src/pages/guide/english/cplusplus/map/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/pages/guide/english/cplusplus/map/index.md b/client/src/pages/guide/english/cplusplus/map/index.md index 806e419331..14772b23bf 100644 --- a/client/src/pages/guide/english/cplusplus/map/index.md +++ b/client/src/pages/guide/english/cplusplus/map/index.md @@ -4,7 +4,7 @@ title: Map ## Introduction of map -`map` is an associative container that store elements in key-value pair. Just like in `Java` have collection, associative array in PHP and so on. +`map` is an associative container that store elements in key-value pair. Just like in `Java` we have collection, associative array in PHP and so on. ## Benefits of using map * It stores only unique keys and that too in sorted order based on its assigned sorting criteria.