From c161e4d110d0bdec5837e451fa957059286c8cb7 Mon Sep 17 00:00:00 2001 From: Stuart Wiener Date: Thu, 25 Sep 2025 09:59:32 -0400 Subject: [PATCH 1/2] docs: fix typo - remove duplicate word "be" (#3293) Fix typo Removed "be" --- src/api/composition-api-helpers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. ::: From d8bdd608d27673b2ca274b2a7896a619bc0a24e1 Mon Sep 17 00:00:00 2001 From: Imad Saddik <79410781+ImadSaddik@users.noreply.github.com> Date: Thu, 25 Sep 2025 14:58:54 +0100 Subject: [PATCH 2/2] docs: fixed a typo in watchers.md (#3296) --- src/guide/essentials/watchers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/essentials/watchers.md b/src/guide/essentials/watchers.md index df509158..79a8e646 100644 --- a/src/guide/essentials/watchers.md +++ b/src/guide/essentials/watchers.md @@ -474,7 +474,7 @@ export default { -This works in versions before 3.5. In addition, `onCleanup` passed via function argument is bound to the watcher instance so it is not subject to the synchronously constraint of `onWatcherCleanup`. +This works in versions before 3.5. In addition, `onCleanup` passed via function argument is bound to the watcher instance so it is not subject to the synchronous constraint of `onWatcherCleanup`. ## توقيت تنفيذ الدالة المعالجة {#callback-flush-timing}