From 3df02ba00e685f307cb7638498f565b7df991b20 Mon Sep 17 00:00:00 2001
From: Edward Diener
Date: Tue, 4 Apr 2017 08:12:27 -0400
Subject: [PATCH] Correction of previous fix.
---
using_concept_check.htm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/using_concept_check.htm b/using_concept_check.htm
index 2fd5218..80c95cb 100644
--- a/using_concept_check.htm
+++ b/using_concept_check.htm
@@ -114,7 +114,7 @@ int main() {
also be parenthesized. For example, the standard stable_sort
algorithm might be declared as follows:
-class template<typename RanIter>
+template <class RanIter>
BOOST_CONCEPT_REQUIRES(
((Mutable_RandomAccessIterator<RanIter>))
((LessThanComparable<typename Mutable_RandomAccessIterator<RanIter>::value_type>)),