diff --git a/docs/content/docs/1.getting-started/3.confetti-tutorial.md b/docs/content/docs/1.getting-started/3.confetti-tutorial.md index e08c1826..7caeacd2 100644 --- a/docs/content/docs/1.getting-started/3.confetti-tutorial.md +++ b/docs/content/docs/1.getting-started/3.confetti-tutorial.md @@ -21,7 +21,7 @@ This is a [registry script](/scripts), a supported third-party integration built on top of the [useScript](/docs/api/use-script) composable that allows you to load scripts from NPM. -When working with NPM files, you'd typically include them as a node_module dependency in the `package.json` file. However, +When working with NPM files, you'd typically include them as a `node_module` dependency in the `package.json` file. However, optimizing the script loading of these scripts can be difficult, requiring a dynamic import of the module from a separate chunk and loading it only when needed. It also slows down your build as the module needs to be transpiled. @@ -60,7 +60,7 @@ useHead({ ### Loading the script -Within your one of your components, you'll want to load the script. You can do this by using the `useScriptNpm` registry script. +Within one of your components, you'll want to load the script. You can do this by using the `useScriptNpm` registry script. ```vue [app.vue]