From 3cb9bb4428a8e4d9d52bda7a9a8e959e26935859 Mon Sep 17 00:00:00 2001 From: Nguyen Anh Tuan Date: Fri, 29 Sep 2023 21:07:38 +0700 Subject: [PATCH] Correct the vector declaration --- exercises/concept/making-the-grade/.docs/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/making-the-grade/.docs/introduction.md b/exercises/concept/making-the-grade/.docs/introduction.md index e5b1d1bc6..73fb8cd11 100644 --- a/exercises/concept/making-the-grade/.docs/introduction.md +++ b/exercises/concept/making-the-grade/.docs/introduction.md @@ -27,7 +27,7 @@ You do not need to specify a size: #include // std::vector variable_name {list of elements} -std::vector countdown {3, 2, 1}; +std::vector countdown {3, 2, 1}; // my_vector contains the elements 3, 2 and 1 ```