diff --git a/packages/nuxt/src/app/composables/asyncData.ts b/packages/nuxt/src/app/composables/asyncData.ts index 778dd48daf..86006ff822 100644 --- a/packages/nuxt/src/app/composables/asyncData.ts +++ b/packages/nuxt/src/app/composables/asyncData.ts @@ -174,7 +174,7 @@ export function useAsyncData< * Provides access to data that resolves asynchronously in an SSR-friendly composable. * See {@link https://nuxt.com/docs/api/composables/use-async-data} * @param key A unique key to ensure that data fetching can be properly de-duplicated across requests. - * @param handler An asynchronous function that must return a truthy value (for example, it should not be `undefined` or `null`) or the request may be duplicated on the client side. + * @param handler An asynchronous function that must return a value (it should not be `undefined`) or the request may be duplicated on the client side. * @param options customize the behavior of useAsyncData */ export function useAsyncData<