diff --git a/doc/tuple_users_guide.html b/doc/tuple_users_guide.html index ade902e..bdf7109 100644 --- a/doc/tuple_users_guide.html +++ b/doc/tuple_users_guide.html @@ -202,7 +202,7 @@ Array arguments to make_tuple functions are deduced to reference to
make_tuple("Donald", "Daisy");
 
-This creates an object of type tuple<const char (&)[5], const char (&)[6]> +This creates an object of type tuple<const char (&)[7], const char (&)[6]> (note that the type of a string literal is an array of const characters, not const char*). However, to get make_tuple to create a tuple with an element of a non-const array type one must use the ref wrapper. @@ -500,12 +500,12 @@ The idea for the tie mechanism came from an old usenet article by Ian McCulloch,

[1] -Järvi J.: Tuples and multiple return values in C++, TUCS Technical Report No 249, 1999 (http://www.tucs.fi/publications). +Järvi J.: Tuples and multiple return values in C++, TUCS Technical Report No 249, 1999 (http://www.tucs.fi/Publications).

[2] -Järvi J.: ML-Style Tuple Assignment in Standard C++ - Extending the Multiple Return Value Formalism, TUCS Technical Report No 267, 1999 (http://www.tucs.fi/publications). +Järvi J.: ML-Style Tuple Assignment in Standard C++ - Extending the Multiple Return Value Formalism, TUCS Technical Report No 267, 1999 (http://www.tucs.fi/Publications).