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