From 008b7b945e0b418a933470d5a159367b362476a2 Mon Sep 17 00:00:00 2001 From: Salman <61201330+untamedImpala@users.noreply.github.com> Date: Tue, 12 Oct 2021 11:07:23 +0500 Subject: [PATCH] changed "std::device_vector" to "thrust::device_vector" Fixed a documentation issue --- thrust/for_each.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thrust/for_each.h b/thrust/for_each.h index db569d444..7d05e3ea1 100644 --- a/thrust/for_each.h +++ b/thrust/for_each.h @@ -54,7 +54,7 @@ THRUST_NAMESPACE_BEGIN * and \p UnaryFunction does not apply any non-constant operation through its argument. * * The following code snippet demonstrates how to use \p for_each to print the elements - * of a \p std::device_vector using the \p thrust::device parallelization policy: + * of a \p thrust::device_vector using the \p thrust::device parallelization policy: * * \code * #include