From 1e03db2feb0464cc1b1dba4e1aa1a24348907c51 Mon Sep 17 00:00:00 2001 From: Jordan Pittman Date: Fri, 2 Feb 2024 15:36:26 -0500 Subject: [PATCH] Update comment --- packages/@headlessui-vue/src/hooks/use-id.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/@headlessui-vue/src/hooks/use-id.ts b/packages/@headlessui-vue/src/hooks/use-id.ts index 3d0847b733..f667e169f8 100644 --- a/packages/@headlessui-vue/src/hooks/use-id.ts +++ b/packages/@headlessui-vue/src/hooks/use-id.ts @@ -13,10 +13,10 @@ export function useId() { } /** - * This function is allows users to provide a custom id generator - * as a workaround for the lack of stable SSR IDs in Vue 3.x + * This function allows users to provide a custom ID generator + * as a workaround for the lack of stable SSR IDs in Vue 3.x. * - * This lets users of Nuxt swap in the Nuxt `useId` function + * This Nuxt users use the Nuxt provided `useId` function * which is stable across SSR and client. */ export function provideUseId(fn: () => string) {