diff --git a/doc/tuple_advanced_interface.html b/doc/tuple_advanced_interface.html
index 4eb3ed8..9fefe6d 100644
--- a/doc/tuple_advanced_interface.html
+++ b/doc/tuple_advanced_interface.html
@@ -101,7 +101,7 @@ For a one-element cons list the tail argument (null_type
) can be om
The template access_traits
defines three type functions. Let T
be a type of an element in a tuple:
access_traits<T>::type
maps T
to the return type of the non-const access functions (nonmeber and member get
functions, and the get_head
function).access_traits<T>::non_const_type
maps T
to the return type of the non-const access functions (nonmeber and member get
functions, and the get_head
function).access_traits<T>::const_type
maps T
to the return type of the const access functions.access_traits<T>::parameter_type
maps T
to the parameter type of the tuple constructor.