From b99f3765c7ceb9fbc74354e96cb8975d3dea2f45 Mon Sep 17 00:00:00 2001 From: jeanphilippeD Date: Fri, 5 Feb 2016 22:38:21 +0000 Subject: [PATCH] Add missing word 'from' --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 052a198..fa48391 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -5325,7 +5325,7 @@ Note that calling a specific explicitly qualified function is not a virtual call ##### Note -There is nothing inherently wrong with calling virtual functions constructors and destructors. +There is nothing inherently wrong with calling virtual functions from constructors and destructors. The semantics of such calls is type safe. However, experience shows that such calls are rarely needed, easily confuse maintainers, and become a source of errors when used by novices.