diff --git a/doc/Jamfile b/doc/Jamfile index c2c1c2f0..32d5c370 100644 --- a/doc/Jamfile +++ b/doc/Jamfile @@ -11,6 +11,7 @@ boostbook quickbook chunk.section.depth=4 chunk.first.sections=1 toc.section.depth=3 - toc.max.depth=1 + toc.max.depth=3 + generate.section.toc.level=1 ; diff --git a/doc/algorithms.qbk b/doc/algorithms.qbk index 2f959e4e..1e2f4ef8 100644 --- a/doc/algorithms.qbk +++ b/doc/algorithms.qbk @@ -116,7 +116,7 @@ Linear, exactly `__result_of_size__::value` applications of `f`. struct make_string { template - struct apply + struct result { typedef std::string type; }; @@ -172,7 +172,7 @@ Linear, exactly `__result_of_size__::value` applications of `f`. struct make_string { template - struct apply + struct result { typedef std::string type; }; @@ -1828,7 +1828,7 @@ Returns the result of type __transform__, given the sequence and __poly_func_obj [*Return type]: A model of __forward_sequence__. -[*Semantics]: Returns a sequence with values `F::apply::type` for each element type `E` in `Sequence`. +[*Semantics]: Returns a sequence with values `F::result::type` for each element type `E` in `Sequence`. [heading Complexity] Constant.