From 2833958488b25a61ee1fb4662eca143764a72942 Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Wed, 17 Aug 2022 08:43:23 -0700 Subject: [PATCH] Fix a minor typo inside Android Native documentation (#3989) Summary: Just fixing a typo ## Changelog Fix a minor typo inside Android Native documentation Pull Request resolved: https://github.com/facebook/flipper/pull/3989 Test Plan: n/a **Static Docs Preview: flipper** |[Full Site](https://our.intern.facebook.com/intern/staticdocs/eph/D38784228/V2/flipper/)| |**Modified Pages**| |[docs/getting-started/android-native](https://our.intern.facebook.com/intern/staticdocs/eph/D38784228/V2/flipper/docs/getting-started/android-native/)| Reviewed By: cortinico Differential Revision: D38784228 Pulled By: mweststrate fbshipit-source-id: 1f1a5d4fb9a6740cb514de97a03de6f2352afb93 --- docs/getting-started/android-native.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started/android-native.mdx b/docs/getting-started/android-native.mdx index c1152fda5..74035882d 100644 --- a/docs/getting-started/android-native.mdx +++ b/docs/getting-started/android-native.mdx @@ -35,7 +35,7 @@ dependencies { The `flipper-noop` package provides a limited subset of the APIs provided by the `flipper` package and does not provide any plugin stubs. It's recommended that you keep all Flipper instantiation code in a separate build variant to ensure it doesn't accidentally make it into your production builds. -To see how to organise your Flipper initialization into debug and release variants. see thos [sample app](https://github.com/facebook/flipper/tree/main/android/sample/src). +To see how to organise your Flipper initialization into debug and release variants, check this [sample app](https://github.com/facebook/flipper/tree/main/android/sample/src). Alternatively, have a look at the third-party [flipper-android-no-op](https://github.com/theGlenn/flipper-android-no-op) repository, which provides empty implementations for several Flipper plugins. :::