From 171fda35972cb0678c26274547be3d5dfaf73156 Mon Sep 17 00:00:00 2001 From: Sergey Zubkov Date: Thu, 6 Jan 2022 23:26:42 -0500 Subject: [PATCH] F.7: de-lowercase two lines --- CppCoreGuidelines.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index f3502f0..f2a733d 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -2820,10 +2820,10 @@ We can catch many common cases of dangling pointers statically (see [lifetime sa * Flag a parameter of a smart pointer type (a type that overloads `operator->` or `operator*`) that is copyable/movable but never copied/moved from in the function body, and that is never modified, and that is not passed along to another function that could do so. That means the ownership semantics are not used. Suggest using a `T*` or `T&` instead. -**see also**: +**See also**: -* [prefer `t*` over `t&` when "no argument" is a valid option](#Rf-ptr-ref) -* [smart pointer rule summary](#Rr-summary-smartptrs) +* [Prefer `T*` over `T&` when "no argument" is a valid option](#Rf-ptr-ref) +* [Smart pointer rule summary](#Rr-summary-smartptrs) ### F.8: Prefer pure functions