From db2d52c74ca19c3628215c1f823e3825bff12d71 Mon Sep 17 00:00:00 2001 From: Marc Rousavy Date: Wed, 9 Jun 2021 11:22:08 +0200 Subject: [PATCH] Update FRAME_PROCESSORS_CREATE_OVERVIEW.mdx --- docs/docs/guides/FRAME_PROCESSORS_CREATE_OVERVIEW.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/guides/FRAME_PROCESSORS_CREATE_OVERVIEW.mdx b/docs/docs/guides/FRAME_PROCESSORS_CREATE_OVERVIEW.mdx index 0b8a73d..efb8c38 100644 --- a/docs/docs/guides/FRAME_PROCESSORS_CREATE_OVERVIEW.mdx +++ b/docs/docs/guides/FRAME_PROCESSORS_CREATE_OVERVIEW.mdx @@ -63,7 +63,7 @@ export function detectObject(frame: Frame): string { } ``` -You can also manipulate the buffer and return it (or a copy) by using the `Frame` class: +You can also manipulate the buffer and return it (or a copy of it) by using the [`Frame` class](https://github.com/cuvent/react-native-vision-camera/blob/main/ios/Frame%20Processor/Frame.h): ```objc #import @@ -75,7 +75,7 @@ static inline id resize(Frame* frame, NSArray args) { } ``` -Which returns a `Frame` in JS: +Which returns a [`Frame`](https://github.com/cuvent/react-native-vision-camera/blob/main/src/Frame.ts) in JS: ```js const frameProcessor = useFrameProcessor((frame) => {