From 1d8648b13a0667d338a4e60df004be7e41525968 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 28 Jun 2021 15:44:12 +1000 Subject: Cleanup: repeated terms in code comments & error messages --- source/blender/blenlib/BLI_vector.hh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/blenlib/BLI_vector.hh') diff --git a/source/blender/blenlib/BLI_vector.hh b/source/blender/blenlib/BLI_vector.hh index 0e878d549c1..5b88ad6fa7d 100644 --- a/source/blender/blenlib/BLI_vector.hh +++ b/source/blender/blenlib/BLI_vector.hh @@ -507,10 +507,10 @@ class Vector { } /** - * Enlarges the size of the internal buffer that is considered to be initialized. This invokes - * undefined behavior when when the new size is larger than the capacity. The method can be - * useful when you want to call constructors in the vector yourself. This should only be done in - * very rare cases and has to be justified every time. + * Enlarges the size of the internal buffer that is considered to be initialized. + * This invokes undefined behavior when the new size is larger than the capacity. + * The method can be useful when you want to call constructors in the vector yourself. + * This should only be done in very rare cases and has to be justified every time. */ void increase_size_by_unchecked(const int64_t n) noexcept { -- cgit v1.2.3