diff --git a/exercises/concept/making-the-grade/.docs/introduction.md b/exercises/concept/making-the-grade/.docs/introduction.md index 6d12ae984..b594c6d02 100644 --- a/exercises/concept/making-the-grade/.docs/introduction.md +++ b/exercises/concept/making-the-grade/.docs/introduction.md @@ -15,7 +15,7 @@ Look at these examples to see the two container types' initializations: #include #include -// std::array variable_name {list of elements} +// std::array variable_name {list of elements} std::array indie_rock {"yeah", "yeah", "yeah"}; // indie_rock contains the elements "yeah" three times ``` @@ -26,7 +26,7 @@ You do not need to specify a size: ```cpp #include -// std::vector variable_name {list of elements} +// std::vector variable_name {list of elements} std::vector countdown {3, 2, 1}; // my_vector contains the elements 3, 2 and 1 ```