From c1a28e5d81b69f411c7f529eaa992775ff90d799 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaakko=20J=C3=A4rvi?= Date: Thu, 20 Feb 2003 15:30:48 +0000 Subject: [PATCH] typofix [SVN r17557] --- doc/tuple_users_guide.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tuple_users_guide.html b/doc/tuple_users_guide.html index d85cd24..ade902e 100644 --- a/doc/tuple_users_guide.html +++ b/doc/tuple_users_guide.html @@ -97,7 +97,7 @@ tuple<A*, tuple<const A*, const B&, C>, bool, void*>

The tuple constructor takes the tuple elements as arguments. -For an n-element tuple, the constructor can be invoked with k arguments, where 0 < k <= n. +For an n-element tuple, the constructor can be invoked with k arguments, where 0 <= k <= n. For example:

tuple<int, double>() 
 tuple<int, double>(1)