From 2541e809b680684318cefd6414e666a9218584e0 Mon Sep 17 00:00:00 2001 From: Kie Date: Mon, 10 May 2021 12:55:53 +0800 Subject: [PATCH] [I.9] fix typo (#1787) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index bb115b3..e2afd5f 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -1758,7 +1758,7 @@ Make the interface precisely specified and compile-time checkable in the (not so Use the C++20 style of requirements specification. For example: template - // requires InputIterator && EqualityComparable>, Val> + // requires InputIterator && EqualityComparable, Val> Iter find(Iter first, Iter last, Val v) { // ...