Update c++.html.markdown

This commit is contained in:
ven 2017-05-18 12:48:46 +02:00 committed by GitHub
parent d2a8a52017
commit eb44c5bc91

View File

@ -217,7 +217,7 @@ cout << myString + myOtherString; // "Hello World"
cout << myString + " You"; // "Hello You"
// C++ strings are mutable and have value semantics.
// C++ strings are mutable.
myString.append(" Dog");
cout << myString; // "Hello Dog"