diff --git a/docs/extending/flipper-plugin.mdx b/docs/extending/flipper-plugin.mdx index b0bb3f5b7..614db4eef 100644 --- a/docs/extending/flipper-plugin.mdx +++ b/docs/extending/flipper-plugin.mdx @@ -1075,7 +1075,7 @@ Example: getFlipperLib().writeTextToClipboard("hello from Flipper"); ``` -The full set of utilities is listed in [FlipperLib.tsx](https://github.com/facebook/flipper/blob/main/desktop/flipper-plugin/src/plugin/FlipperLib.tsx#L94). +The full set of utilities is listed in [FlipperLib.tsx](https://github.com/facebook/flipper/blob/main/desktop/flipper-plugin-core/src/plugin/FlipperLib.tsx#L95). Since the Node.js system API's cannot be used directly by Flipper plugins (when running in a browser), the utilties exposed on `getFlipperLib().remoteServerContext` should be used instead, as detailed in [Using Node.js APIs](node-apis.mdx).