diff --git a/React/Inspector/RCTInspector.mm b/React/Inspector/RCTInspector.mm index 6453fd166..09756cc69 100644 --- a/React/Inspector/RCTInspector.mm +++ b/React/Inspector/RCTInspector.mm @@ -16,7 +16,7 @@ using namespace facebook::react; // This is a port of the Android impl, at // react-native-github/ReactAndroid/src/main/java/com/facebook/react/bridge/Inspector.java -// react-native-github/ReactAndroid/src/main/jni/xreact/jni/JInspector.cpp +// react-native-github/ReactAndroid/src/main/jni/react/jni/JInspector.cpp // please keep consistent :) class RemoteConnection : public IRemoteConnection { diff --git a/ReactCommon/cxxreact/BUCK b/ReactCommon/cxxreact/BUCK index 72713c826..81b6176ef 100644 --- a/ReactCommon/cxxreact/BUCK +++ b/ReactCommon/cxxreact/BUCK @@ -134,7 +134,7 @@ rn_xplat_cxx_library( # some platform-dependant setup. Exactly what setup to do is # determined by some static functors, defined in `Platform.h`, which # are initially `nullptr`. On Android, these functors are properly - # assigned as part of `xreact`'s `JNI_OnLoad`. By depending directly + # assigned as part of `react/jni`'s `JNI_OnLoad`. By depending directly # on the bridge, we can mess up the SO initialisation order, causing # `initOnJSVMThread` to be called before the platform-specific hooks # have been properly initialised. Bad Times(TM).