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) { // ...