Cleanup: typos

This commit is contained in:
Jacques Lucke 2020-08-26 11:24:10 +02:00
parent c44251c7d7
commit e414afbaf6
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -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);