summaryrefslogtreecommitdiffhomepage
path: root/c++.html.markdown
diff options
context:
space:
mode:
authorZachary Ferguson <zfergus2@users.noreply.github.com>2015-10-06 18:27:48 -0400
committerZachary Ferguson <zfergus2@users.noreply.github.com>2015-10-06 18:27:48 -0400
commitda10a0bf0686e29b55850b522af305b8a50eba3d (patch)
tree31744f36b91642c5f97304ce4f82d98dd6424339 /c++.html.markdown
parentc4f93c0b0ec1fcea11e336b67929b9d6f426765c (diff)
parent6ac7368b3b8e3ce1ee6c50c9f088553e7cbc6d1a (diff)
Merge remote-tracking branch 'adambard/master'
Diffstat (limited to 'c++.html.markdown')
-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