From 3d21a60d41f3a5df00d9f4b8a79001b62c019c50 Mon Sep 17 00:00:00 2001 From: Joshua Gross Date: Fri, 21 Feb 2020 10:17:24 -0800 Subject: [PATCH] EZ, Fix typos in logs Summary: Fix typo to make grepping easier. Changelog: [Internal] Reviewed By: mdvacca Differential Revision: D20025729 fbshipit-source-id: 56d219e771dad133bf74fd1df327c2bbd0f8fd9e --- .../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 aeedebb6d25..3fe49600579 100644 --- a/ReactAndroid/src/main/java/com/facebook/react/ReactInstanceManager.java +++ b/ReactAndroid/src/main/java/com/facebook/react/ReactInstanceManager.java @@ -1132,7 +1132,7 @@ public class ReactInstanceManager { // If we can't get a UIManager something has probably gone horribly wrong if (uiManager == null) { throw new IllegalStateException( - "Unable to attache a rootView to ReactInstance when UIManager is not properly initialized."); + "Unable to attach a rootView to ReactInstance when UIManager is not properly initialized."); } @Nullable Bundle initialProperties = reactRoot.getAppProperties();