From 87e3e47da7fe22c7a24e3d243ed1d2dbfb4637ea Mon Sep 17 00:00:00 2001 From: hsutter Date: Thu, 3 Dec 2015 06:26:11 -0800 Subject: [PATCH] Slightly better text for previous commit --- CppCoreGuidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index b2fcf4a..4dab763 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -13892,7 +13892,7 @@ To provide statically type-safe manipulation of elements. ##### Reason -To simplify code and eliminate a need for explicit memory management. To bring an object into a surrounding scope, thereby extending its lifetime. See also [the general item about "out" output values](#Rf-out). +To simplify code and eliminate a need for explicit memory management. To bring an object into a surrounding scope, thereby extending its lifetime. See also [F.20, the general item about "out" output values](#Rf-out). ##### Example @@ -13905,7 +13905,7 @@ To simplify code and eliminate a need for explicit memory management. To bring a ##### Exceptions -See the Exceptions in ["out" output values](#Rf-out). +See the Exceptions in [F.20](#Rf-out). ##### Enforcement