diff options
author | ven <vendethiel@hotmail.fr> | 2017-05-18 12:48:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-18 12:48:46 +0200 |
commit | eb44c5bc91e5b14a43a1a61cd62775d7b2abd008 (patch) | |
tree | 0ebc6de52b1af1155041d45cee96941e14a0d33f /c++.html.markdown | |
parent | d2a8a52017e993055bac2bd6c1c3688f869a5b2c (diff) |
Update c++.html.markdown
Diffstat (limited to 'c++.html.markdown')
-rw-r--r-- | c++.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c++.html.markdown b/c++.html.markdown index 5220fb0b..1461c93e 100644 --- a/c++.html.markdown +++ b/c++.html.markdown @@ -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" |