diff options
Diffstat (limited to 'absl/algorithm/container.h')
-rw-r--r-- | absl/algorithm/container.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/algorithm/container.h b/absl/algorithm/container.h index dbdc5c842932..740e2071a6a5 100644 --- a/absl/algorithm/container.h +++ b/absl/algorithm/container.h @@ -869,7 +869,7 @@ void c_stable_sort(C& c, Compare&& comp) { // c_is_sorted() // // Container-based version of the <algorithm> `std::is_sorted()` function -// to evaluate whethr the given containter is sorted in ascending order. +// to evaluate whether the given containter is sorted in ascending order. template <typename C> bool c_is_sorted(const C& c) { return std::is_sorted(container_algorithm_internal::c_begin(c), |