Cleanup: Fix Span drop_back docstring

Pull Request: https://projects.blender.org/blender/blender/pulls/125512
This commit is contained in:
Sean Kim
2024-07-27 05:27:54 +02:00
committed by Sean Kim
parent 9bdd511a27
commit edb73325c1

View File

@@ -177,8 +177,8 @@ template<typename T> 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
{