From 9c0444b7668b51a833a0e7ca78bc5320e2375f3c Mon Sep 17 00:00:00 2001
From: vil02 <65706193+vil02@users.noreply.github.com>
Date: Thu, 20 Feb 2025 20:11:19 +0100
Subject: [PATCH] `std` is not an abbreviation for STL

---
 .../roadmaps/cpp/content/101-setting-up/102-first-program.md    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/data/roadmaps/cpp/content/101-setting-up/102-first-program.md b/src/data/roadmaps/cpp/content/101-setting-up/102-first-program.md
index 8d6633b01..5a30eb59a 100644
--- a/src/data/roadmaps/cpp/content/101-setting-up/102-first-program.md
+++ b/src/data/roadmaps/cpp/content/101-setting-up/102-first-program.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!" << std::endl;
 ```
-- `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
 - `std::endl`: The "end line" manipulator that inserts a newline character and flushes the output buffer