From 545c7c40e3c244b8455f548566adef2dbc08dd1c Mon Sep 17 00:00:00 2001 From: Andreas Scherer Date: Sun, 18 Oct 2015 16:09:23 +0200 Subject: [PATCH] Correct multiple problems in related sentences. --- CppCoreGuidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index c47ccfc..e6bf90e 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -5869,13 +5869,13 @@ Consider: void print(int a, int base); void print(const string&); -These three functions all prints their arguments (appropriately). Conversely +These three functions all print their arguments (appropriately). Conversely: void print_int(int a); void print_based(int a, int base); void print_string(const string&); -These three functions all prints their arguments (appropriately). Adding to the name just introduced verbosity and inhibits generic code. +These three functions all print their arguments (appropriately). Adding to the name just introduced verbosity and inhibits generic code. ##### Enforcement