From b5a20f10ea2ae29c7ea18974b244a1df67fd59d6 Mon Sep 17 00:00:00 2001 From: michaelz85 Date: Mon, 18 Dec 2017 17:39:04 +0100 Subject: [PATCH] fixed error in code comment (#1105) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index dd58796..f85f633 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -16299,7 +16299,7 @@ The ability to specify a meaningful semantics is a defining characteristic of a int x = 7; int y = 9; - auto z = algo(x, y); // z = 18 + auto z = algo(x, y); // z = 16 string xx = "7"; string yy = "9";