diff --git a/doc/refmanual/for-each.html b/doc/refmanual/for-each.html index 535678a..fa0759c 100644 --- a/doc/refmanual/for-each.html +++ b/doc/refmanual/for-each.html @@ -123,7 +123,7 @@ typedef next<in>::
Equivalent to
-for_each< tranform_view<s,op> >( f ); +for_each< transform_view<s,op> >( f );
typedef list<float,double,long double> floats; -typedef push_front<floating_types,int>::type types; +typedef push_front<floats,int>::type types; BOOST_MPL_ASSERT(( is_same< front<types>::type, int > ));diff --git a/doc/src/refmanual/list.rst b/doc/src/refmanual/list.rst index abbc93a..5de356d 100644 --- a/doc/src/refmanual/list.rst +++ b/doc/src/refmanual/list.rst @@ -102,7 +102,7 @@ Example .. parsed-literal:: typedef list
To get a detailed picture of the new apply/lambda semantics, please see the test case at -http://cvs.sourceforge.net/viewcvs.py/boost/boost/libs/mpl/test/apply.cpp?view=markup +libs/mpl/test/apply.cpp and the corresponding sections of the MPL reference manual.