From edb73325c199423e902bd5879c2fb2ea4d4b3a09 Mon Sep 17 00:00:00 2001 From: Sean Kim Date: Sat, 27 Jul 2024 05:27:54 +0200 Subject: [PATCH] Cleanup: Fix Span drop_back docstring Pull Request: https://projects.blender.org/blender/blender/pulls/125512 --- source/blender/blenlib/BLI_span.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/blenlib/BLI_span.hh b/source/blender/blenlib/BLI_span.hh index 8d54d33cd30..0c316ef7d02 100644 --- a/source/blender/blenlib/BLI_span.hh +++ b/source/blender/blenlib/BLI_span.hh @@ -177,8 +177,8 @@ template class Span { } /** - * Returns a new Span with n elements removed from the beginning. This invokes undefined - * behavior when n is negative. + * Returns a new Span with n elements removed from the end. This invokes undefined behavior when + * n is negative. */ constexpr Span drop_back(int64_t n) const {