From ae7fb67b19abaf6b598a9136f58cba8750c6b64e Mon Sep 17 00:00:00 2001 From: Alfred Date: Mon, 5 Apr 2021 11:06:50 -0500 Subject: [PATCH] Fix typo in `useLazyQuery` API - React section (#7803) --- docs/source/api/react/hooks.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/api/react/hooks.mdx b/docs/source/api/react/hooks.mdx index 34778ed2dd9..50b7390ef98 100644 --- a/docs/source/api/react/hooks.mdx +++ b/docs/source/api/react/hooks.mdx @@ -172,7 +172,7 @@ function useLazyQuery( | Param | Type | Description | | ---------------- | ----------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | -| Execute function | options?: QueryLazyOptions<TVariables>) => void | Function that can be triggered to execute the suspended query. After being called, `useLazyQuery` behaves just like `useQuery`. | +| Execute function | (options?: QueryLazyOptions<TVariables>) => void | Function that can be triggered to execute the suspended query. After being called, `useLazyQuery` behaves just like `useQuery`. | **Result object**