From 26b5b3a74712e535cb4291bd8d5c010b185ea507 Mon Sep 17 00:00:00 2001 From: georgev93 <39860568+georgev93@users.noreply.github.com> Date: Fri, 17 Jan 2025 05:46:53 -0500 Subject: [PATCH] [C++/en] fix typo (#5236) --- c++.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/c++.md b/c++.md index f87d71ba..cec97f6c 100644 --- a/c++.md +++ b/c++.md @@ -292,8 +292,8 @@ std::string retVal = tempObjectFun(); // created whenever a function returns an object, and they are destroyed at the // end of the evaluation of the enclosing expression (Well, this is what the // standard says, but compilers are allowed to change this behavior. Look up -// "return value optimization" if you're into this kind of details). So in this -// code: +// "return value optimization" if you're into these kinds of details). So in +// this code: foo(bar(tempObjectFun())) // assuming foo and bar exist, the object returned from tempObjectFun is