diff --git a/doc/testing_tools/boost_test_super_macro.qbk b/doc/testing_tools/boost_test_super_macro.qbk index 466e4467..72de0081 100644 --- a/doc/testing_tools/boost_test_super_macro.qbk +++ b/doc/testing_tools/boost_test_super_macro.qbk @@ -56,7 +56,7 @@ are in fact not possible, such as: Collections are automatically detected and compared using the appropriate methods. -[info + The concept of collection is a sequence of elements that (C++11): * that has `size` and `begin` member functions, as well as fields `const_iterator` and `value_type` @@ -66,8 +66,8 @@ For C++03, the collection should be explicitly indicated. Standard containers of The detection of the collection is delegated to the class [classref boost::unit_test::is_forward_iterable]. It is possible to specialize this class further to flag a type as forward iterable [footnote relevant only for C++03, as the fields and member functions are -detected automatically on C++11] -] +detected automatically on C++11]. + [endsect] [/ collections]