Skip to content

Commit

Permalink
fix attr type in api ref
Browse files Browse the repository at this point in the history
  • Loading branch information
huntabyte committed Nov 30, 2023
1 parent 0772760 commit 96ef625
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/content/api-reference/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const asChild = {
export const builderSlotProp: PropSchema = {
type: {
type: C.OBJECT,
definition: "{ [k: string]: any; action: Action<any, any, any>}"
definition: "{ [k: string]: any; action: Action<any, any, any>&nbsp;}"
},
description:
"The builder attributes and actions to apply to the element if using the `asChild` prop with [delegation](/docs/delegation)."
Expand All @@ -20,7 +20,7 @@ export const builderSlotProp: PropSchema = {
export const attrsSlotProp: PropSchema = {
type: {
type: C.OBJECT,
definition: "Record<string, string>"
definition: "Record&lt;string, string&gt;"
},
description:
"Additional attributes to apply to the element if using the `asChild` prop with [delegation](/docs/delegation)."
Expand Down

0 comments on commit 96ef625

Please sign in to comment.