From 10b89505b183e12edb3d8dd1e76b0f0b319ff094 Mon Sep 17 00:00:00 2001 From: Mattias Fredriksson Date: Wed, 6 Apr 2022 16:53:58 -0500 Subject: Cleanup: Incorrect comment in IndexRange header --- source/blender/blenlib/BLI_index_range.hh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source') diff --git a/source/blender/blenlib/BLI_index_range.hh b/source/blender/blenlib/BLI_index_range.hh index 832e438fa75..85f2c83364b 100644 --- a/source/blender/blenlib/BLI_index_range.hh +++ b/source/blender/blenlib/BLI_index_range.hh @@ -235,8 +235,8 @@ class IndexRange { } /** - * Returns a new IndexRange with n elements removed from the beginning. This invokes undefined - * behavior when n is negative. + * Returns a new IndexRange with n elements removed from the beginning of the range. + * This invokes undefined behavior when n is negative. */ constexpr IndexRange drop_front(int64_t n) const { @@ -246,8 +246,8 @@ class IndexRange { } /** - * Returns a new IndexRange with n elements removed from the beginning. This invokes undefined - * behavior when n is negative. + * Returns a new IndexRange with n elements removed from the end of the range. + * This invokes undefined behavior when n is negative. */ constexpr IndexRange drop_back(int64_t n) const { -- cgit v1.2.3