Fix typos in ReactCxxErrorHandler message

Summary: Changelog: [Internal]

Reviewed By: cortinico

Differential Revision: D38578690

fbshipit-source-id: d0339bf1db1bb3e36f0cbf1e93cc5853a7ed6570
This commit is contained in:
Alex Hunt
2022-08-10 10:52:29 -07:00
committed by Facebook GitHub Bot
parent 62021eb8d1
commit 0aed5d9db2
@@ -32,7 +32,7 @@ public class ReactCxxErrorHandler {
parameters[0] = new Exception(message);
mHandleErrorFunc.invoke(mObject, parameters);
} catch (Exception e) {
FLog.e("ReactCxxErrorHandler", "Failed to invole error hanlder function", e);
FLog.e("ReactCxxErrorHandler", "Failed to invoke error handler function", e);
}
}
}