From e92d8c442fe0df1d22d625b31e0c9c650fdab720 Mon Sep 17 00:00:00 2001 From: Piotr Idzik <65706193+vil02@users.noreply.github.com> Date: Mon, 24 Mar 2025 18:48:00 +0100 Subject: [PATCH] fix: `std` abbreviation for STL (#8392) --- .../content/running-your-first-program@SEq0D2Zg5WTsIDtd1hW9f.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/roadmaps/cpp/content/running-your-first-program@SEq0D2Zg5WTsIDtd1hW9f.md b/src/data/roadmaps/cpp/content/running-your-first-program@SEq0D2Zg5WTsIDtd1hW9f.md index 4e1651dea..2b4a8416b 100644 --- a/src/data/roadmaps/cpp/content/running-your-first-program@SEq0D2Zg5WTsIDtd1hW9f.md +++ b/src/data/roadmaps/cpp/content/running-your-first-program@SEq0D2Zg5WTsIDtd1hW9f.md @@ -42,7 +42,7 @@ To output text to the console, we use the `std::cout` object and the insertion o ```cpp std::cout << "Hello, World!" << '\n'; ``` -- `std`: This is the namespace where C++ standard library entities (classes and functions) reside. It stands for "standard" and is an abbreviation for the Standard Template Library (STL). +- `std`: This is the namespace where C++ standard library entities (classes and functions) reside. It stands for "standard" - `std::cout`: The standard "character output" stream that writes to the console - `"Hello, World!"`: The string literal to print - `'\n'`: The "end line" manipulator that inserts a newline character and flushes the output buffer