Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--intern/clog/CLG_log.h2
-rw-r--r--source/blender/blenlib/tests/BLI_vector_test.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/intern/clog/CLG_log.h b/intern/clog/CLG_log.h
index 7418623755c..35515a1d5c6 100644
--- a/intern/clog/CLG_log.h
+++ b/intern/clog/CLG_log.h
@@ -132,7 +132,7 @@ void CLG_logf(CLG_LogType *lg,
const char *format,
...) _CLOG_ATTR_NONNULL(1, 3, 4, 5) _CLOG_ATTR_PRINTF_FORMAT(5, 6);
-/* Main initializer and distructor (per session, not logger). */
+/* Main initializer and destructor (per session, not logger). */
void CLG_init(void);
void CLG_exit(void);
diff --git a/source/blender/blenlib/tests/BLI_vector_test.cc b/source/blender/blenlib/tests/BLI_vector_test.cc
index 6dfab0d9e6f..e6b2e7c6365 100644
--- a/source/blender/blenlib/tests/BLI_vector_test.cc
+++ b/source/blender/blenlib/tests/BLI_vector_test.cc
@@ -815,7 +815,7 @@ TEST(vector, RemoveChunk)
EXPECT_EQ(vec.size(), 0);
}
-TEST(vector, RemoveChunkExceptitons)
+TEST(vector, RemoveChunkExceptions)
{
Vector<ExceptionThrower> vec(10);
vec.remove(1, 3);