fix typos in comments and strings

This commit is contained in:
Brenton Bostick 2022-11-28 09:23:45 -05:00
parent 668ab8b85c
commit f74a594e98
8 changed files with 12 additions and 12 deletions

View file

@ -62,7 +62,7 @@ jclass JniLookup::findClass(const std::string &name)
JNIEnv *env = NULL;
if(m_jvm->GetEnv((void**)&env, JNI_VERSION_1_6) != JNI_OK)
{
LOGE("Error retreiving JNI Environment");
LOGE("Error retrieving JNI Environment");
return NULL;
}
const char *c = name.c_str();