From e1810cf164aac0489ac6c6c28aeb3d79cb044972 Mon Sep 17 00:00:00 2001 From: David Mitchell Date: Tue, 29 Sep 2015 14:57:08 -0700 Subject: [PATCH] Fix typo. --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 27f8e3a..1a9d448 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -2896,7 +2896,7 @@ However, a programmer can disalble or replace these defaults. Named_map nm; // default construct Named_map nm2 {nm}; // copy construct -Since `std::map` and `string` have all the special functions, not further work is needed. +Since `std::map` and `string` have all the special functions, no further work is needed. **Note**: This is known as "the rule of zero".