Skip to content
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.

Commit

Permalink
Merge pull request #872 from RealRecon/fix-more-typos
Browse files Browse the repository at this point in the history
Fixed another typo in uninitialized_fill.h
  • Loading branch information
jaredhoberock authored Jan 5, 2017
2 parents 2882c96 + 0a37030 commit 8551c97
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions thrust/uninitialized_fill.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ namespace thrust
* an object and then creates an object at that location by calling a
* constructor. Occasionally, however, it is useful to separate those two
* operations. If each iterator in the range <tt>[first, last)</tt> points
* to unitialized memory, then \p uninitialized_fill creates copies of \c x
* to uninitialized memory, then \p uninitialized_fill creates copies of \c x
* in that range. That is, for each iterator \c i in the range <tt>[first, last)</tt>,
* \p uninitialized_fill creates a copy of \c x in the location pointed to \c i by
* calling \p ForwardIterator's \c value_type's copy constructor.
Expand Down Expand Up @@ -99,7 +99,7 @@ __host__ __device__
* an object and then creates an object at that location by calling a
* constructor. Occasionally, however, it is useful to separate those two
* operations. If each iterator in the range <tt>[first, last)</tt> points
* to unitialized memory, then \p uninitialized_fill creates copies of \c x
* to uninitialized memory, then \p uninitialized_fill creates copies of \c x
* in that range. That is, for each iterator \c i in the range <tt>[first, last)</tt>,
* \p uninitialized_fill creates a copy of \c x in the location pointed to \c i by
* calling \p ForwardIterator's \c value_type's copy constructor.
Expand Down Expand Up @@ -153,7 +153,7 @@ template<typename ForwardIterator, typename T>
* an object and then creates an object at that location by calling a
* constructor. Occasionally, however, it is useful to separate those two
* operations. If each iterator in the range <tt>[first, first+n)</tt> points
* to unitialized memory, then \p uninitialized_fill creates copies of \c x
* to uninitialized memory, then \p uninitialized_fill creates copies of \c x
* in that range. That is, for each iterator \c i in the range <tt>[first, first+n)</tt>,
* \p uninitialized_fill creates a copy of \c x in the location pointed to \c i by
* calling \p ForwardIterator's \c value_type's copy constructor.
Expand Down Expand Up @@ -215,7 +215,7 @@ __host__ __device__
* an object and then creates an object at that location by calling a
* constructor. Occasionally, however, it is useful to separate those two
* operations. If each iterator in the range <tt>[first, first+n)</tt> points
* to unitialized memory, then \p uninitialized_fill creates copies of \c x
* to uninitialized memory, then \p uninitialized_fill creates copies of \c x
* in that range. That is, for each iterator \c i in the range <tt>[first, first+n)</tt>,
* \p uninitialized_fill creates a copy of \c x in the location pointed to \c i by
* calling \p ForwardIterator's \c value_type's copy constructor.
Expand Down

0 comments on commit 8551c97

Please sign in to comment.