From dfb6d092a8f003fa621d11f2eeca9fca629d5623 Mon Sep 17 00:00:00 2001 From: Joe Hawes <> Date: Thu, 16 Nov 2023 11:39:19 -0800 Subject: [PATCH 1/4] docs: minor updates to 2.3.3 modules --- docs/2.guide/3.going-further/3.modules.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/2.guide/3.going-further/3.modules.md b/docs/2.guide/3.going-further/3.modules.md index 5f45091d2180..8a5a28811d1a 100644 --- a/docs/2.guide/3.going-further/3.modules.md +++ b/docs/2.guide/3.going-further/3.modules.md @@ -86,7 +86,7 @@ When running the release script, the following will happen: - Pushing a git tag representing the newly published version to your git remote origin ::callout -As with other scripts, feel free to fine-tune the default `release` script in your `package.json` to better suit your need. +As with other scripts, feel free to fine-tune the default `release` script in your `package.json` to better suit your needs. :: ## Developing Modules @@ -137,7 +137,7 @@ export default defineNuxtModule((options, nuxt) => { However, **we do not recommend** using this low-level function definition. Instead, to define a module, **we recommend** using the object-syntax with `meta` property to identify your module, especially when publishing to npm. -This helper makes writing Nuxt Module more straightforward by implementing many common patterns seen in modules, guaranteeing future compatibility, and improving your module author developer experience and the one of your module users. +This helper makes writing Nuxt Module more straightforward by implementing many common patterns seen in modules, guaranteeing future compatibility, improving the experience for both module authors and users. ```ts import { defineNuxtModule } from '@nuxt/kit' From 895f844b763f968c6cfecbbc300a4763d5463bfb Mon Sep 17 00:00:00 2001 From: Joe Hawes Date: Thu, 16 Nov 2023 12:15:26 -0800 Subject: [PATCH 2/4] docs: minor formatting fixes for api components & composables --- docs/3.api/1.components/1.nuxt-client-fallback.md | 2 +- docs/3.api/1.components/3.nuxt-layout.md | 2 +- docs/3.api/1.components/7.nuxt-welcome.md | 2 +- docs/3.api/1.components/8.nuxt-island.md | 2 +- docs/3.api/2.composables/use-fetch.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/3.api/1.components/1.nuxt-client-fallback.md b/docs/3.api/1.components/1.nuxt-client-fallback.md index d5d1bd450f85..536d296ac9f4 100644 --- a/docs/3.api/1.components/1.nuxt-client-fallback.md +++ b/docs/3.api/1.components/1.nuxt-client-fallback.md @@ -1,6 +1,6 @@ --- title: "" -description: "Nuxt provides `` component to render its content on the client if any of its children trigger an error in SSR" +description: "Nuxt provides component to render its content on the client if any of its children trigger an error in SSR" links: - label: Source (client) icon: i-simple-icons-github diff --git a/docs/3.api/1.components/3.nuxt-layout.md b/docs/3.api/1.components/3.nuxt-layout.md index 94cf0ddcf5a7..409b31b01dcd 100644 --- a/docs/3.api/1.components/3.nuxt-layout.md +++ b/docs/3.api/1.components/3.nuxt-layout.md @@ -97,7 +97,7 @@ console.log(layoutCustomProps.title) // I am a custom layout ## Layout's Ref -To get the ref of a layout component, access it through `ref.value.layoutRef` +To get the ref of a layout component, access it through `ref.value.layoutRef`. ````vue [app.vue]