From c4f833ad5ccc7bc8f45315a4aa3d1610358d3059 Mon Sep 17 00:00:00 2001 From: Yogendra Singh Date: Thu, 19 Oct 2017 15:36:55 +0530 Subject: [PATCH] Simple typo fix. (#1060) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index d27cca5..bd5b33d 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -3713,7 +3713,7 @@ Generic lambdas offer a concise way to write function templates and so can be us ##### Reason -Default arguments simply provides alternative interfaces to a single implementation. +Default arguments simply provide alternative interfaces to a single implementation. There is no guarantee that a set of overloaded functions all implement the same semantics. The use of default arguments can avoid code replication.