Skip to content

Commit 59e4121

Browse files
authored
docs: correct weird wording (#538)
1 parent 430bc08 commit 59e4121

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/content/docs/1.getting-started/3.confetti-tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This is a [registry script](/scripts), a supported
2121
third-party integration built on top of the
2222
[useScript](/docs/api/use-script) composable that allows you to load scripts from NPM.
2323

24-
When working with NPM files, you'd typically include them as a node_module dependency in the `package.json` file. However,
24+
When working with NPM files, you'd typically include them as a `node_module` dependency in the `package.json` file. However,
2525
optimizing the script loading of these scripts can be difficult, requiring a dynamic import of the module from a separate chunk and
2626
loading it only when needed. It also slows down your build as the module needs to be transpiled.
2727

@@ -60,7 +60,7 @@ useHead({
6060

6161
### Loading the script
6262

63-
Within your one of your components, you'll want to load the script. You can do this by using the `useScriptNpm` registry script.
63+
Within one of your components, you'll want to load the script. You can do this by using the `useScriptNpm` registry script.
6464

6565
```vue [app.vue]
6666
<script setup lang="ts">

0 commit comments

Comments
 (0)