diff --git a/src/content/docs/usewatch.mdx b/src/content/docs/usewatch.mdx
index 845b4ec70..06977de2a 100644
--- a/src/content/docs/usewatch.mdx
+++ b/src/content/docs/usewatch.mdx
@@ -28,7 +28,7 @@ Behaves similarly to the `watch` API, however, this will isolate re-rendering at
| `compute` | function |
Subscribe to selective and computed form values.
- Subscribe to the entire form but only return updated value with certain condition { \n if (data.test?.length) return data.test; \n\n return ''; \n }, \n});`}/>
- Subscribe to a specific form value state { \n return data.length ? data : ''; \n }, \n});`}/>
|
| `defaultValue` | unknown | default value for `useWatch` to return before the initial render.
**Note:** the first render will always return `defaultValue` when it's supplied. |
| `disabled` | boolean = false | Option to disable the subscription. |
-| `exact` | boolean = false | This prop will enable an exact match for input name subscriptions. |
+| `exact` | boolean = false | Enable exact name matching. When `false` (default), a subscription fires when the subscribed name is a prefix of the changed field name, or vice versa (for example, subscribing to `"users"` receives updates for `"users.0.name"`). |
### Return