From 4eb145dff43871425a66768025cf4e039f1efef7 Mon Sep 17 00:00:00 2001 From: Kamran Habib <150379905+kamranhab@users.noreply.github.com> Date: Wed, 13 Dec 2023 04:55:38 +0530 Subject: [PATCH] Fix Content Grammar Typo (#4854) I made a slight modification to improve the clarity of the sentence. Specifically, I changed: "Make sure to follow the instructions provided by the editor's documentation to set up C++ correctly." to: "Make sure to follow the instructions provided in the editor's documentation to set up C++ correctly." This change maintains the same meaning but improves the flow of the sentence. --- .../roadmaps/cpp/content/101-setting-up/101-code-editors.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/roadmaps/cpp/content/101-setting-up/101-code-editors.md b/src/data/roadmaps/cpp/content/101-setting-up/101-code-editors.md index f2c1dcc7e..d7184c82e 100644 --- a/src/data/roadmaps/cpp/content/101-setting-up/101-code-editors.md +++ b/src/data/roadmaps/cpp/content/101-setting-up/101-code-editors.md @@ -10,6 +10,6 @@ Code editors are programs specifically designed for editing, managing and writin These are just a few examples, and there are many other code editors available, including Atom, Notepad++, and Geany. They all have their features and may suit different developers' needs. Finding the right code editor is often a matter of personal preference and workflow. -To work with C++ in your chosen code editor, you often need to install some additional tools and add-ons, such as compilers, linters, and debugger support. Make sure to follow the instructions provided by the editor's documentation to set up C++ correctly. +To work with C++ in your chosen code editor, you often need to install some additional tools and add-ons, such as compilers, linters, and debugger support. Make sure to follow the instructions provided in the editor's documentation to set up C++ correctly. -- [Using C++ on Linux in VSCode](https://code.visualstudio.com/docs/cpp/config-linux) \ No newline at end of file +- [Using C++ on Linux in VSCode](https://code.visualstudio.com/docs/cpp/config-linux)