From 5bd194f23a82eb8a4d05a8afb6e6ee31ada95b85 Mon Sep 17 00:00:00 2001 From: Ward Oosterlijnck Date: Tue, 9 Apr 2019 13:28:05 +1000 Subject: [PATCH] docs: useAsyncFn typo fix --- docs/useAsyncFn.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/useAsyncFn.md b/docs/useAsyncFn.md index ae74466d..b3eabcdf 100644 --- a/docs/useAsyncFn.md +++ b/docs/useAsyncFn.md @@ -13,7 +13,7 @@ const Demo = (url) => { const response = await fetch(url); const result = await response.text(); return result - }), [url]; + }, [url]); return (