Type fix typo 'destory' -> 'destroy'

This commit is contained in:
2023-03-17 12:00:19 +08:00
parent 5e06d6b448
commit 7f5ff4eaf3
3 changed files with 14 additions and 14 deletions

View File

@@ -96,7 +96,7 @@ void test_Ini(const char * iniText) {
}
}
PineIni_Destory(iniResult);
PineIni_Destroy(iniResult);
}
void test_Ini_Success() {
@@ -242,7 +242,7 @@ void test_Ini_Get_Value() {
intValue = PineIni_GetInt(iniResult, sectionName, key, 1);
printf("Get Integer from <%s>.<%s> = %d\n", sectionName, key, intValue);
PineIni_Destory(iniResult);
PineIni_Destroy(iniResult);
}
void PutsTitle(const char* title) {