From 0048b15ead5f7f9267a197a9566306f1275f8627 Mon Sep 17 00:00:00 2001 From: Sergey Zubkov Date: Mon, 12 Jun 2017 08:57:15 -0400 Subject: [PATCH] fix mismatch between title and toc for F.22 --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 3e23b23..ecbe6dd 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -2236,7 +2236,7 @@ Parameter passing expression rules: Parameter passing semantic rules: -* [F.22: Use `T*` or `owner` or a smart pointer to designate a single object](#Rf-ptr) +* [F.22: Use `T*` or `owner` to designate a single object](#Rf-ptr) * [F.23: Use a `not_null` to indicate "null" is not a valid value](#Rf-nullptr) * [F.24: Use a `span` or a `span_p` to designate a half-open sequence](#Rf-range) * [F.25: Use a `zstring` or a `not_null` to designate a C-style string](#Rf-zstring)