From 7070ffa839be042e50536e116014ca0bc576823b Mon Sep 17 00:00:00 2001 From: Severin Meyer Date: Thu, 17 Nov 2016 14:49:54 +0100 Subject: [PATCH] C.41: Add missing comma --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 9a28b7d..bfd0cf8 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -4542,7 +4542,7 @@ Compilers do not read comments. ##### Exception -If a valid object cannot conveniently be constructed by a constructor [use a factory function](#Rc-factory). +If a valid object cannot conveniently be constructed by a constructor, [use a factory function](#Rc-factory). ##### Note