android_jni: replace 'instance' with 'as early as possible'
diff --git a/android_jni/avifandroidjni/src/main/jni/libavif_jni.cc b/android_jni/avifandroidjni/src/main/jni/libavif_jni.cc
index b257e4e..d769768 100644
--- a/android_jni/avifandroidjni/src/main/jni/libavif_jni.cc
+++ b/android_jni/avifandroidjni/src/main/jni/libavif_jni.cc
@@ -162,7 +162,7 @@
 // control returns to the java layer. If there is none, it will return false. If
 // there is one, then it will clear the pending exception and return true.
 // Whenever this function returns true, the caller should treat it as a fatal
-// error and return with a failure status at the earliest instance possible.
+// error and return with a failure status as early as possible.
 bool JniExceptionCheck(JNIEnv* env) {
   if (!env->ExceptionCheck()) {
     return false;