diff --git a/desktop/plugins/public/crash_reporter/docs/setup.mdx b/desktop/plugins/public/crash_reporter/docs/setup.mdx
index 47eaefe4f..4099cdfaf 100644
--- a/desktop/plugins/public/crash_reporter/docs/setup.mdx
+++ b/desktop/plugins/public/crash_reporter/docs/setup.mdx
@@ -10,7 +10,7 @@ In order to send custom notifications, take the steps detailed below.
## Android
-Instantiate and add the plugin in `FlipperClient`.
+1. Instantiate and add the plugin in `FlipperClient`.
```java
import com.facebook.flipper.plugins.crashreporter.CrashReporterPlugin;
@@ -18,7 +18,7 @@ import com.facebook.flipper.plugins.crashreporter.CrashReporterPlugin;
client.addPlugin(CrashReporterPlugin.getInstance());
```
-Use the following API to trigger your custom crash notification.
+2. Use the following API to trigger your custom crash notification.
```java
import com.facebook.flipper.plugins.crashreporter.CrashReporterPlugin;
diff --git a/desktop/plugins/public/fresco/docs/setup.mdx b/desktop/plugins/public/fresco/docs/setup.mdx
index b47478566..aff899d41 100644
--- a/desktop/plugins/public/fresco/docs/setup.mdx
+++ b/desktop/plugins/public/fresco/docs/setup.mdx
@@ -1,7 +1,7 @@
import useBaseUrl from '@docusaurus/useBaseUrl';
import Link from '@docusaurus/Link';
-Currently, the Image plugin only supports [Fresco](https://frescolib.org/) for Android as backend.
+Currently, the Images plugin only supports [Fresco](https://frescolib.org/) for Android as backend.
If you'd like to see support for other image loading libraries, please post your request in the [Flipper Support](https://fb.workplace.com/groups/flippersupport) Workplace group.
diff --git a/desktop/plugins/public/leak_canary/docs/setup.mdx b/desktop/plugins/public/leak_canary/docs/setup.mdx
index 7964e6d4c..a9fa9fb8a 100644
--- a/desktop/plugins/public/leak_canary/docs/setup.mdx
+++ b/desktop/plugins/public/leak_canary/docs/setup.mdx
@@ -2,7 +2,7 @@
import useBaseUrl from '@docusaurus/useBaseUrl';
import Link from '@docusaurus/Link';
-To setup the Leak Canary plugin, take the following steps:
+To setup the LeakCanary plugin, take the following steps:
1. Ensure that you have an explicit dependency in your application's `build.gradle` including the plugin dependency, such as is shown in the following snippet:
diff --git a/desktop/plugins/public/navigation/docs/setup.mdx b/desktop/plugins/public/navigation/docs/setup.mdx
index b552f261c..2abdf2db3 100644
--- a/desktop/plugins/public/navigation/docs/setup.mdx
+++ b/desktop/plugins/public/navigation/docs/setup.mdx
@@ -18,7 +18,7 @@ This enables the Navigation Plugin to be integrated into existing navigation fra
### Using Android deep links
-The Navigation Plugin can be used with built in [deep links for Android](https://developer.android.com/training/app-links/deep-linking).
+The Navigation Plugin can be used with built-in [Deep Links for Android](https://developer.android.com/training/app-links/deep-linking).
To deep link to an activity, edit the AndroidManifest.xml and add the intent filter for the given activity, as follows:
@@ -50,7 +50,7 @@ The Navigation Plugin can easily be integrated into a third-party navigation fra
#### AirBnB deep link dispatch
-[Deep Link Dispatch](https://github.com/airbnb/DeepLinkDispatch) will work out of the box with Flipper for navigating to links, including support for url parameters.
+[DeepLinkDispatch](https://github.com/airbnb/DeepLinkDispatch) will work out of the box with Flipper for navigating to links, including support for url parameters.
To add logging, simply add a BroadcastReceiver to your app that is called on any incoming deep links:
diff --git a/docs/custom-ports.mdx b/docs/custom-ports.mdx
index b30a33c61..e108e9b5e 100644
--- a/docs/custom-ports.mdx
+++ b/docs/custom-ports.mdx
@@ -6,7 +6,7 @@ sidebar_label: Running Flipper with Custom Ports
## Flipper ports - mobile apps that support certificate exchange
-:::information
+:::info
By default, Flipper runs its servers on ports 9088 and 9089.
The mobile SDKs look for servers on those ports.
:::