From be59e3c73e9cf747ed7c85c325dd367a28a990cc Mon Sep 17 00:00:00 2001 From: xtofl Date: Mon, 12 Oct 2015 20:44:06 +0200 Subject: [PATCH] [fix] markdown backtick mismatch --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 5a82e0f..1cdd7c6 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -5506,7 +5506,7 @@ This a relatively rare use because implementation can often be organized into a ##### Reason -Capping a hierarchy with 'final` is rarely needed for logical reasons and can be damaging to the extensibility of a hierarchy. +Capping a hierarchy with `final` is rarely needed for logical reasons and can be damaging to the extensibility of a hierarchy. Capping an individual virtual function with `final` is error-prone as that `final` can easily be overlooked when defining/overriding a set of functions. ##### Example, bad