From 1a6f97f9473eea7f203d3cf6882b2e3ec9321ea8 Mon Sep 17 00:00:00 2001 From: David Vacca Date: Fri, 12 Jan 2024 09:20:31 -0800 Subject: [PATCH] Fix comments in ReactFeatureFlags (#42025) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/42025 Fix comments in ReactFeatureFlags changelog: [internal] internal Reviewed By: arushikesarwani94 Differential Revision: D52263484 fbshipit-source-id: adb598cf7e35d20893cca77e378bde4cab45f857 --- .../java/com/facebook/react/config/ReactFeatureFlags.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/config/ReactFeatureFlags.java b/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/config/ReactFeatureFlags.java index 8a3d1b586bf273..3349b35d1246f5 100644 --- a/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/config/ReactFeatureFlags.java +++ b/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/config/ReactFeatureFlags.java @@ -21,8 +21,8 @@ public class ReactFeatureFlags { /** * Should this application use TurboModules? If yes, then any module that inherits {@link - * com.facebook.react.internal.turbomodule.core.interfaces.TurboModule} will NOT be passed in to - * C++ CatalystInstanceImpl + * com.facebook.react.turbomodule.core.interfaces.TurboModule} will NOT be passed in to C++ + * CatalystInstanceImpl */ public static volatile boolean useTurboModules = false; @@ -168,9 +168,9 @@ public class ReactFeatureFlags { /* * When the app is completely migrated to Fabric, set this flag to true to - * disable parts of Paper infrastructre that are not needed anymore but consume + * disable parts of Paper infrastructure that are not needed anymore but consume * memory and CPU. Specifically, UIViewOperationQueue and EventDispatcherImpl will no - * longer work as they won't subscribe to ReactChoregrapher for updates. + * longer work as they won't subscribe to ReactChoreographer for updates. */ public static boolean enableFabricRendererExclusively = false;