From 95487436594ae55a968e9cf7881764e256cba96a Mon Sep 17 00:00:00 2001 From: Steven Watanabe Date: Sun, 23 May 2010 14:44:57 +0000 Subject: [PATCH] Fix some minor documentation errors. Fixes #4224 [SVN r62165] --- doc/ref/enum_params_with_defaults.html | 4 ++-- doc/ref/iif.html | 2 +- doc/ref/limit_iteration_dim.html | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/ref/enum_params_with_defaults.html b/doc/ref/enum_params_with_defaults.html index d731069..d58255c 100644 --- a/doc/ref/enum_params_with_defaults.html +++ b/doc/ref/enum_params_with_defaults.html @@ -64,10 +64,10 @@ #include <boost/preprocessor/repetition/enum_params_with_defaults.hpp> BOOST_PP_ENUM_PARAMS_WITH_DEFAULTS(3, class T, U) - // expands to T0 = U0, T1 = U1, T2 = U2 + // expands to class T0 = U0, class T1 = U1, class T2 = U2 BOOST_PP_ENUM_BINARY_PARAMS(3, class T, = U) - // expands to T0 = U0, T1 = U1, T2 = U2 + // expands to class T0 = U0, class T1 = U1, class T2 = U2
diff --git a/doc/ref/iif.html b/doc/ref/iif.html index abd59a4..8c8f744 100644 --- a/doc/ref/iif.html +++ b/doc/ref/iif.html @@ -44,7 +44,7 @@

Sample Code

 #include <boost/preprocessor/control/iif.hpp>
-#include <boost/preprocessor/logical/or.hpp
+#include <boost/preprocessor/logical/or.hpp>
 
 #define OR_IF(p, q, t, f) BOOST_PP_IIF(BOOST_PP_OR(p, q), t, f)
 
diff --git a/doc/ref/limit_iteration_dim.html b/doc/ref/limit_iteration_dim.html
index 6262e8f..54d9c9c 100644
--- a/doc/ref/limit_iteration_dim.html
+++ b/doc/ref/limit_iteration_dim.html
@@ -13,7 +13,7 @@
 		

Remarks

- This macro currently expands to 5. + This macro currently expands to 3.

Requirements