Skip to content

Commit 515a4f2

Browse files
committed
docs: typos
1 parent a12e1e8 commit 515a4f2

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

docs/content/docs/1.getting-started/4.migration.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
2-
ttile: Migration
2+
title: Migration
33
description: How to migrate from v2 to v3
44
---
55

6-
Nuxt Content v3 had been rebuilt from the ground up, resulting in a new library with enhanced capabilities. While we've redesigned concepts and components in a similar way as Content v2, breaking changes are inevidible.
6+
Nuxt Content v3 had been rebuilt from the ground up, resulting in a new library with enhanced capabilities. While we've redesigned concepts and components in a similar way as Content v2, breaking changes are inevitable.
77

8-
Don't worry, you don't need to modify your content files, We made sure that Content v3 handles content in the same was as Content v2.
8+
Don't worry, you don't need to modify your content files, We made sure that Content v3 handles content in the same way as Content v2.
99

1010
## Changes
1111

12-
Here is the list breaking changes in Content v3:
12+
Here is the list of breaking changes in Content v3:
1313

1414
- `queryContent()`{lang=ts} API is replaced with new `queryCollection()`{lang=ts}
1515
- New API is backed by SQL
@@ -25,7 +25,7 @@ Here is the list breaking changes in Content v3:
2525
- Multi source is dropped in favor of multi collection.
2626
- Document `._path` is now renamed to `.path`
2727
- `searchContent()`{lang=ts} is dropped in favor of new api `queryCollectionSearchSections`
28-
- Full text search can easily done using this API See [Full-Text Search Snippets](/docs/advanced/fulltext-search)
28+
- Full text search can easily be done using this API See [Full-Text Search Snippets](/docs/advanced/fulltext-search)
2929
- `useContentHelpers()`{lang=ts} is removed
3030

3131

docs/content/docs/3.utils/1.query-collection.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ const { data } = await useAsyncData(route.path, () => {
118118
})
119119
```
120120

121-
### `where(field: keyof Colleciton, operator: SqlOperator, value?: unkown)`
121+
### `where(field: keyof Collection, operator: SqlOperator, value?: unkown)`
122122

123123
Add a condition to the query to filter results based on a specific field.
124124

@@ -192,7 +192,7 @@ const { data: docs } = await useAsyncData('documents-list', () => {
192192
193193
<template>
194194
<NuxtLink v-for="doc in docs" :key="doc.path" :to="doc.path">
195-
<h2>{{ doc.title }}</div>
195+
<h2>{{ doc.title }}</h2>
196196
<p>{{ doc.description }}</p>
197197
</NuxtLink>
198198
</template>

docs/content/docs/6.advanced/1.fulltext-search.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Full-Text Search
33
description: Implement full-text search in your website using Nuxt Content
44
---
55

6-
Content module expose a handy utility [`queryCollectionSearchSections`{lang="ts-type"}][1] to break down content files into searchable sections. This is useful for implementing full-text search in your website.
6+
Content module exposes a handy utility [`queryCollectionSearchSections`{lang="ts-type"}][1] to break down content files into searchable sections. This is useful for implementing full-text search in your website.
77
You can use the result of this utility in combination with [Nuxt UI Content Search][nuxt-ui-content-search] or other search libraries like [Fuse.js](https://fusejs.io/), [minisearch][mini-search], etc.
88

99

docs/content/docs/6.advanced/4.tools.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ navigation:
55
title: Debugging tools
66
---
77

8-
## SQLight vscode extension
8+
## SQLite vscode extension

0 commit comments

Comments
 (0)