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

@ -296,7 +296,7 @@ jobject newInetAddress(JNIEnv *env, const sockaddr_storage &addr)
inetAddressClass, "getByAddress", "([B)Ljava/net/InetAddress;");
if(env->ExceptionCheck() || inetAddress_getByAddress == NULL)
{
LOGE("Erorr finding getByAddress() static method");
LOGE("Error finding getByAddress() static method");
return NULL;
}