Fix capitalization of method reference

Summary: Docs only.

Reviewed By: jknoxville

Differential Revision: D31928323

fbshipit-source-id: 14be8bf89215054e6561fc38f73040ccfae229c4
This commit is contained in:
Pascal Hartig
2021-10-27 02:46:55 -07:00
committed by Facebook GitHub Bot
parent 9763af4c96
commit 0f9698312a

View File

@@ -69,7 +69,7 @@ export interface BasePluginClient {
/**
* The `onReady` event is triggered immediately after a plugin has been initialized and any pending state was restored.
* This event fires after `onImport` / the interpretation of any `persist` flags and indicates that the initialization process has finished.
* This event does not signal that the plugin is loaded in the UI yet (see `onActivated`) and does fire before deeplinks (see `onDeeplink`) are handled.
* This event does not signal that the plugin is loaded in the UI yet (see `onActivated`) and does fire before deeplinks (see `onDeepLink`) are handled.
*/
onReady(handler: () => void): void;