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:
authorJacques Lucke <jacques@blender.org>2020-08-26 12:24:10 +0300
committerJacques Lucke <jacques@blender.org>2020-08-26 12:24:10 +0300
commite414afbaf668550844451b1ca0c4c30541f9827d (patch)
tree46562a24080d8932e2eedcfaa909e174e23abbc7
parentc44251c7d705015f40d2e73d703c7ae3a99178ba (diff)
Cleanup: typos
-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);