Skip to content

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
miscco authored May 3, 2024
1 parent fe3a98b commit 2eea114
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions thrust/thrust/tuple.h
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ _CCCL_HOST_DEVICE inline bool operator>(const null_type&, const null_type&)
* \tparam N This parameter selects the element of interest.
* \tparam T A \c tuple type of interest.
*
* \see tuple
* \see pair
* \see tuple
*/
template <size_t N, class T>
Expand All @@ -120,7 +120,7 @@ struct __is_tuple_of_iterator_references : _CUDA_VSTD::false_type
* arguments. Each template argument specifies the type of element in the \p
* tuple. Consequently, tuples are heterogeneous, fixed-size collections of
* values. An instantiation of \p tuple with two arguments is similar to an
* instantiation of \p tuple with the same two arguments. Individual elements
* instantiation of \p pair with the same two arguments. Individual elements
* of a \p tuple may be accessed with the \p get function.
*
* \tparam TN The type of the <tt>N</tt> \c tuple element. Thrust's \p tuple
Expand Down Expand Up @@ -148,7 +148,7 @@ struct __is_tuple_of_iterator_references : _CUDA_VSTD::false_type
* }
* \endcode
*
* \see tuple
* \see pair
* \see get
* \see make_tuple
* \see tuple_element
Expand Down

0 comments on commit 2eea114

Please sign in to comment.