diff --git a/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/interfaces/ReactHostInterface.kt b/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/interfaces/ReactHostInterface.kt index df4cce1c025ed8..3a2e9b4cd5ed51 100644 --- a/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/interfaces/ReactHostInterface.kt +++ b/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/interfaces/ReactHostInterface.kt @@ -85,8 +85,8 @@ interface ReactHostInterface { * Entrypoint to reload the ReactInstance. If the ReactInstance is destroying, will wait until * destroy is finished, before reloading. * - * @param reason [String] describing why ReactHost is being reloaded (e.g. js error, user tap on - * reload button) + * @param reason describing why ReactHost is being reloaded (e.g. js error, user tap on reload + * button) * @return A task that completes when React Native reloads */ fun reload(reason: String): TaskInterface @@ -95,9 +95,9 @@ interface ReactHostInterface { * Entrypoint to destroy the ReactInstance. If the ReactInstance is reloading, will wait until * reload is finished, before destroying. * - * @param reason [String] describing why ReactHost is being destroyed (e.g. memmory pressure) - * @param ex [Exception] exception that caused the trigger to destroy ReactHost (or null) This - * exception will be used to log properly the cause of destroy operation. + * @param reason describing why ReactHost is being destroyed (e.g. memmory pressure) + * @param ex exception that caused the trigger to destroy ReactHost (or null) This exception will + * be used to log properly the cause of destroy operation. * @return A task that completes when React Native gets destroyed. */ fun destroy(reason: String, ex: Exception?): TaskInterface