diff --git a/c++.html.markdown b/c++.html.markdown
index 7dc9afbe..24d38df7 100644
--- a/c++.html.markdown
+++ b/c++.html.markdown
@@ -981,7 +981,7 @@ cout << tuple_size::value << "\n"; // prints: 3
// tuple_cat concatenates the elements of all the tuples in the same order.
auto concatenated_tuple = tuple_cat(first, second, third);
-// concatenated_tuple becomes = (10, 'A', 1e9, 15, 11, 'A' ,3.14141)
+// concatenated_tuple becomes = (10, 'A', 1e9, 15, 11, 'A', 3.14141)
cout << get<0>(concatenated_tuple) << "\n"; // prints: 10
cout << get<3>(concatenated_tuple) << "\n"; // prints: 15
@@ -1057,7 +1057,7 @@ cout << ST.size(); // will print the size of set ST
// and a mapped value, following a specific order.
#include