From 286495a23f83abd6978e1f39613decea2a00b0e9 Mon Sep 17 00:00:00 2001 From: Jason Brown Date: Fri, 21 Jun 2019 09:34:25 -0700 Subject: [PATCH] Update basic-hooks.md --- docs/usage/basic-hooks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/usage/basic-hooks.md b/docs/usage/basic-hooks.md index ace23fe7..95fe08dd 100644 --- a/docs/usage/basic-hooks.md +++ b/docs/usage/basic-hooks.md @@ -80,7 +80,7 @@ export default function useCounter(initialValue = 0) { } ``` -Setting the `initialValue` prop in out test is as easy as calling the hook with the value we want to +Setting the `initialValue` prop in our test is as easy as calling the hook with the value we want to use: ```js