Skip to content

Commit a3262db

Browse files
committed
fiy typo
1 parent e53be37 commit a3262db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libcudacxx/include/cuda/__iterator/transform_iterator.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ class transform_iterator : public __transform_iterator_category_base<_Iter, _Fn>
318318
}
319319
#endif // _CCCL_STD_VER <= 2017
320320

321-
//! @brief Compares two \c transform_iterator for less then, directly comparing the stored iterators
321+
//! @brief Compares two \c transform_iterator for less than, directly comparing the stored iterators
322322
template <class _Iter2 = _Iter>
323323
[[nodiscard]] _LIBCUDACXX_HIDE_FROM_ABI friend constexpr auto
324324
operator<(const transform_iterator& __lhs, const transform_iterator& __rhs) noexcept(
@@ -328,7 +328,7 @@ class transform_iterator : public __transform_iterator_category_base<_Iter, _Fn>
328328
return __lhs.__current_ < __rhs.__current_;
329329
}
330330

331-
//! @brief Compares two \c transform_iterator for greater then, directly comparing the stored iterators
331+
//! @brief Compares two \c transform_iterator for greater than, directly comparing the stored iterators
332332
template <class _Iter2 = _Iter>
333333
[[nodiscard]] _LIBCUDACXX_HIDE_FROM_ABI friend constexpr auto
334334
operator>(const transform_iterator& __lhs, const transform_iterator& __rhs) noexcept(

0 commit comments

Comments
 (0)