Skip to content

Commit c52bcdb

Browse files
committed
Fix typo
1 parent 92f8d68 commit c52bcdb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/include/llvm/ADT/STLExtras.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ static constexpr bool HasFreeFunctionRBegin =
416416
} // namespace detail
417417

418418
// Returns an iterator_range over the given container which iterates in reverse.
419-
// Does not mutate the containers.
419+
// Does not mutate the container.
420420
template <typename ContainerTy> [[nodiscard]] auto reverse(ContainerTy &&C) {
421421
if constexpr (detail::HasFreeFunctionRBegin<ContainerTy>)
422422
return make_range(adl_rbegin(C), adl_rend(C));

0 commit comments

Comments
 (0)