From 7e7e1d8926d8277051ac48d13230e5d9f5afa567 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Thu, 20 Jul 2017 20:05:42 +0100 Subject: [PATCH] Move period outside parenthesis --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 8714bff..7c8607c 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -2840,7 +2840,7 @@ For advanced uses (only), where you really need to optimize for rvalues passed t Avoid "esoteric techniques" such as: * Passing arguments as `T&&` "for efficiency". - Most rumors about performance advantages from passing by `&&` are false or brittle (but see [F.18](#Rf-consume) and [F.19](#Rf-forward).) + Most rumors about performance advantages from passing by `&&` are false or brittle (but see [F.18](#Rf-consume) and [F.19](#Rf-forward)). * Returning `const T&` from assignments and similar operations (see [F.47](#Rf-assignment-op).) ##### Example