From 15ca9d220c9e99eb6c497cb9c151dd2ecf19d2cc Mon Sep 17 00:00:00 2001 From: Andrew Pardoe Date: Mon, 22 Jan 2018 11:24:19 -0800 Subject: [PATCH] Fixing typo per #1130 & updating date --- CppCoreGuidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 26e622f..cbd7110 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -1,6 +1,6 @@ # C++ Core Guidelines -January 1, 2018 +January 22, 2018 Editors: @@ -5084,7 +5084,7 @@ If you really have to, look at [factory functions](#Rc-factory). One reason people have used `init()` functions rather than doing the initialization work in a constructor has been to avoid code replication. [Delegating constructors](#Rc-delegating) and [default member initialization](#Rc-in-class-initializer) do that better. -Another reason is been to delay initialization until an object is needed; the solution to that is often [not to declare a variable until it can be properly initialized](#Res-init) +Another reason has been to delay initialization until an object is needed; the solution to that is often [not to declare a variable until it can be properly initialized](#Res-init) ##### Enforcement