From d28a46983e6f4be301c7115fc7b14309dc68ca9d Mon Sep 17 00:00:00 2001 From: Thibault Kruse Date: Sun, 25 Jun 2017 10:58:29 +0900 Subject: [PATCH] Fix missing comma --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 31b1d4c..005751b 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -2006,7 +2006,7 @@ Grouping arguments into "bundles" is a general technique to reduce the number of Alternatively, we could use concepts (as defined by the ISO TS) to define the notion of three types that must be usable for merging: - Mergeable{In1 In2, Out} + Mergeable{In1, In2, Out} OutputIterator merge(In1 r1, In2 r2, Out result); ##### Example