From b7f0f8856c7805b9b40f7db20d83d7eacbbcec03 Mon Sep 17 00:00:00 2001 From: Kohei Takahashi Date: Sun, 2 Nov 2014 17:32:01 +0900 Subject: [PATCH] Tuple document's cosmetic changes --- doc/tuple.qbk | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/doc/tuple.qbk b/doc/tuple.qbk index 4899ec43..6f8e829f 100644 --- a/doc/tuple.qbk +++ b/doc/tuple.qbk @@ -90,19 +90,21 @@ The __tr1__tuple__ type provides a default constructor, a constructor that takes [section Tuple creation functions] [heading Description] -TR1 describes 2 utility functions for creating __tr1__tuple__s. `make_tuple` builds a tuple out of it's argument list, and `tie` builds a tuple of references to it's arguments. The details of these creation functions are described in this section. +TR1 describes 2 utility functions for creating __tr1__tuple__. `make_tuple` builds a tuple out of it's argument list, and `tie` builds a tuple of references to it's arguments. The details of these creation functions are described in this section. [heading Specification] template - tuple make_tuple(const T1& t1, const T2& t2, ..., const TN& tn); + tuple + make_tuple(const T1& t1, const T2& t2, ..., const TN& tn); Where `Vi` is `X&` if the cv-unqualified type `Ti` is `reference_wrapper`, otherwise `Vi` is `Ti`. [*Returns]: `tuple(t1, t2, ..., tN)` template - tuple tie(T1& t1, T2& t2, ..., TN& tn); + tuple + tie(T1& t1, T2& t2, ..., TN& tn); [*Returns]: tuple(t1, t2, ..., tN). When argument `ti` is `ignore`, assigning any value to the corresponding tuple element has no effect.