Skip to content

Commit

Permalink
docs: escape 'elements' in jsdoc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Mar 14, 2024
1 parent 7a3857e commit 5c6dc4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/nuxt/src/app/components/nuxt-link.ts
Expand Up @@ -23,7 +23,7 @@ const firstNonUndefined = <T> (...args: (T | undefined)[]) => args.find(arg => a
const NuxtLinkDevKeySymbol: InjectionKey<boolean> = Symbol('nuxt-link-dev-key')

/**
* <NuxtLink> is a drop-in replacement for both Vue Router's <RouterLink> component and HTML's <a> tag.
* `<NuxtLink>` is a drop-in replacement for both Vue Router's `<RouterLink>` component and HTML's `<a>` tag.
* @see https://nuxt.com/docs/api/components/nuxt-link
*/
export interface NuxtLinkProps extends Omit<RouterLinkProps, 'to'> {
Expand Down
2 changes: 1 addition & 1 deletion packages/schema/src/config/experimental.ts
Expand Up @@ -171,7 +171,7 @@ export default defineUntypedSchema({
writeEarlyHints: false,

/**
* Experimental component islands support with <NuxtIsland> and .island.vue files.
* Experimental component islands support with `<NuxtIsland>` and `.island.vue` files.
*
* By default it is set to 'auto', which means it will be enabled only when there are islands,
* server components or server pages in your app.
Expand Down

0 comments on commit 5c6dc4c

Please sign in to comment.