From 42b3595367d9311a1792288a86a7001ea5376a6f Mon Sep 17 00:00:00 2001 From: Balaji Sivasakthi <65065614+balaji-sivasakthi@users.noreply.github.com> Date: Fri, 14 Jul 2023 21:26:21 +0530 Subject: [PATCH] fix(typo): fixed typo in cpp namespaces (#4122) --- .../106-structuring-codebase/100-scope/100-namespaces.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/roadmaps/cpp/content/106-structuring-codebase/100-scope/100-namespaces.md b/src/data/roadmaps/cpp/content/106-structuring-codebase/100-scope/100-namespaces.md index 18a88accb..41de1c235 100644 --- a/src/data/roadmaps/cpp/content/106-structuring-codebase/100-scope/100-namespaces.md +++ b/src/data/roadmaps/cpp/content/106-structuring-codebase/100-scope/100-namespaces.md @@ -57,7 +57,7 @@ int main() { } ``` -##`using` Keyword +## `using` Keyword You can use the `using` keyword to import namespaced elements into the current scope. However, this might lead to name conflicts if multiple namespaces have elements with the same name.