summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGeorge Gognadze <dreamtocode@users.noreply.github.com>2015-10-07 01:27:12 +0400
committerGeorge Gognadze <dreamtocode@users.noreply.github.com>2015-10-07 01:27:12 +0400
commit9d64b532f8ccdfd95c2417dcf65257385956353a (patch)
treedaa182138f9e299ec985c2d095e02987afe64c34
parent55c80f255202b03c4c3a66ac1d37f880a3782b68 (diff)
Update c++.html.markdown
spelling error
-rw-r--r--c++.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/c++.html.markdown b/c++.html.markdown
index 8ee964ca..6f4d0562 100644
--- a/c++.html.markdown
+++ b/c++.html.markdown
@@ -264,7 +264,7 @@ string retVal = tempObjectFun();
// What happens in the second line is actually:
// - a string object is returned from tempObjectFun
-// - a new string is constructed with the returned object as arugment to the
+// - a new string is constructed with the returned object as argument to the
// constructor
// - the returned object is destroyed
// The returned object is called a temporary object. Temporary objects are