From 67bf6a14ab4ef2dbd9e16c0e4676f0860596ccf0 Mon Sep 17 00:00:00 2001 From: ZhangWangda Date: Tue, 26 Jan 2016 14:20:38 -0500 Subject: [PATCH] fix typo add a missing bracket --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 2acddd1..6b78415 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -2623,7 +2623,7 @@ A `span` represents a range of elements, but how do we manipulate elements of th for (int x : s) cout << x << '\n'; // range traversal (guaranteed correct) for (int i = 0; i