From 35b6ff62eed3f7633204b66c98f14b9e5be5f069 Mon Sep 17 00:00:00 2001 From: Roshan Date: Wed, 31 Dec 2014 02:00:57 +0530 Subject: [PATCH] Make documentation of includes algorithm more clearer --- include/boost/compute/algorithm/includes.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/boost/compute/algorithm/includes.hpp b/include/boost/compute/algorithm/includes.hpp index dc964265..e786a68c 100644 --- a/include/boost/compute/algorithm/includes.hpp +++ b/include/boost/compute/algorithm/includes.hpp @@ -100,7 +100,9 @@ private: /// \brief Includes algorithm /// /// Finds if the sorted range [first1, last1) includes the sorted -/// range [first2, last2) +/// range [first2, last2). In other words, it checks if [first1, last1) is +/// a superset of [first2, last2). +/// /// \return True, if [first1, last1) includes [first2, last2). False otherwise. /// /// \param first1 Iterator pointing to start of first set