diff --git a/packages/core-data/src/hooks/use-entity-record.ts b/packages/core-data/src/hooks/use-entity-record.ts index 4db789e9d0b91f..9019bc8f59ed19 100644 --- a/packages/core-data/src/hooks/use-entity-record.ts +++ b/packages/core-data/src/hooks/use-entity-record.ts @@ -58,10 +58,10 @@ export interface Options { * * @since 6.1.0 Introduced in WordPress core. * - * @param kind Kind of the entity, e.g. `root` or a `postType`. See rootEntitiesConfig in ../entities.ts for a list of available kinds. - * @param name Name of the entity, e.g. `plugin` or a `post`. See rootEntitiesConfig in ../entities.ts for a list of available names. - * @param recordId ID of the requested entity record. - * @param options Optional hook options. + * @param kind Kind of the entity, e.g. `root` or a `postType`. See rootEntitiesConfig in ../entities.ts for a list of available kinds. + * @param name Name of the entity, e.g. `plugin` or a `post`. See rootEntitiesConfig in ../entities.ts for a list of available names. + * @param recordId ID of the requested entity record. + * @param options Optional hook options. * @example * ```js * import { useEntityRecord } from '@wordpress/core-data'; diff --git a/packages/core-data/src/hooks/use-entity-records.ts b/packages/core-data/src/hooks/use-entity-records.ts index b92b38e4182dbe..01d4aa9e7e6091 100644 --- a/packages/core-data/src/hooks/use-entity-records.ts +++ b/packages/core-data/src/hooks/use-entity-records.ts @@ -37,10 +37,10 @@ const EMPTY_ARRAY = []; * * @since 6.1.0 Introduced in WordPress core. * - * @param kind Kind of the entity, e.g. `root` or a `postType`. See rootEntitiesConfig in ../entities.ts for a list of available kinds. - * @param name Name of the entity, e.g. `plugin` or a `post`. See rootEntitiesConfig in ../entities.ts for a list of available names. - * @param queryArgs Optional HTTP query description for how to fetch the data, passed to the requested API endpoint. - * @param options Optional hook options. + * @param kind Kind of the entity, e.g. `root` or a `postType`. See rootEntitiesConfig in ../entities.ts for a list of available kinds. + * @param name Name of the entity, e.g. `plugin` or a `post`. See rootEntitiesConfig in ../entities.ts for a list of available names. + * @param queryArgs Optional HTTP query description for how to fetch the data, passed to the requested API endpoint. + * @param options Optional hook options. * @example * ```js * import { useEntityRecord } from '@wordpress/core-data'; diff --git a/packages/core-data/src/hooks/use-resource-permissions.ts b/packages/core-data/src/hooks/use-resource-permissions.ts index aef636bb538146..1c9e95429d14cf 100644 --- a/packages/core-data/src/hooks/use-resource-permissions.ts +++ b/packages/core-data/src/hooks/use-resource-permissions.ts @@ -46,8 +46,8 @@ type ResourcePermissionsResolution< IdType > = [ * * @since 6.1.0 Introduced in WordPress core. * - * @param resource The resource in question, e.g. media. - * @param id ID of a specific resource entry, if needed, e.g. 10. + * @param resource The resource in question, e.g. media. + * @param id ID of a specific resource entry, if needed, e.g. 10. * * @example * ```js