diff --git a/src/api/composition-api-helpers.md b/src/api/composition-api-helpers.md index 285ce4d3..a2042c9c 100644 --- a/src/api/composition-api-helpers.md +++ b/src/api/composition-api-helpers.md @@ -134,5 +134,5 @@ Used to generate unique-per-application IDs for accessibility attributes or form If you have more than one Vue application instance of the same page, you can avoid ID conflicts by giving each app an ID prefix via [`app.config.idPrefix`](/api/application#app-config-idprefix). :::warning Caution - `useId()` should be not be called inside a `computed()` property as it may cause instance conflicts. Instead, declare the ID outside of `computed()` and reference it within the computed function. + `useId()` should not be called inside a `computed()` property as it may cause instance conflicts. Instead, declare the ID outside of `computed()` and reference it within the computed function. :::