From eeba5eb774f55803b6bf6e0b363ec556211f5b61 Mon Sep 17 00:00:00 2001 From: king6cong Date: Mon, 14 Nov 2016 10:29:16 -0800 Subject: [PATCH] fix typo Summary: Closes https://github.com/facebook/react-native/pull/10872 Differential Revision: D4176240 Pulled By: ericvicenti fbshipit-source-id: 3b3e9ccb3c456b9b76a1d34322cc12f795e36247 --- .../java/com/facebook/react/cxxbridge/CatalystInstanceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReactAndroid/src/main/java/com/facebook/react/cxxbridge/CatalystInstanceImpl.java b/ReactAndroid/src/main/java/com/facebook/react/cxxbridge/CatalystInstanceImpl.java index 7150ce21b..25985b666 100644 --- a/ReactAndroid/src/main/java/com/facebook/react/cxxbridge/CatalystInstanceImpl.java +++ b/ReactAndroid/src/main/java/com/facebook/react/cxxbridge/CatalystInstanceImpl.java @@ -193,7 +193,7 @@ public class CatalystInstanceImpl implements CatalystInstance { synchronized (mJSCallsPendingInitLock) { // Loading the bundle is queued on the JS thread, but may not have - // run yet. It's save to set this here, though, since any work it + // run yet. It's safe to set this here, though, since any work it // gates will be queued on the JS thread behind the load. mAcceptCalls = true;