From 13d8375323c8fac2cfa94648cdde75448faaa01e Mon Sep 17 00:00:00 2001 From: Aaron Chiu Date: Tue, 3 Oct 2017 10:23:50 -0700 Subject: [PATCH] fix spelling in ReactInstanceManager Reviewed By: kathryngray Differential Revision: D5959860 fbshipit-source-id: 3d5358349fd6c0f9b8e57261914c945488684a96 --- .../src/main/java/com/facebook/react/ReactInstanceManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReactAndroid/src/main/java/com/facebook/react/ReactInstanceManager.java b/ReactAndroid/src/main/java/com/facebook/react/ReactInstanceManager.java index c3328b4a4..868f058ad 100644 --- a/ReactAndroid/src/main/java/com/facebook/react/ReactInstanceManager.java +++ b/ReactAndroid/src/main/java/com/facebook/react/ReactInstanceManager.java @@ -149,7 +149,7 @@ public class ReactInstanceManager { Collections.synchronizedSet(new HashSet()); // Identifies whether the instance manager is or soon will be initialized (on background thread) private volatile boolean mHasStartedCreatingInitialContext = false; - // Identifies whether the insance manager destroy function is in process, + // Identifies whether the instance manager destroy function is in process, // while true any spawned create thread should wait for proper clean up before initializing private volatile Boolean mHasStartedDestroying = false; private final UIImplementationProvider mUIImplementationProvider;