diff --git a/docs/content/4.api/2.composables/1.query-content.md b/docs/content/4.api/2.composables/1.query-content.md index 58c88a1bf..b967c599e 100644 --- a/docs/content/4.api/2.composables/1.query-content.md +++ b/docs/content/4.api/2.composables/1.query-content.md @@ -179,7 +179,7 @@ You will always obtain an array of fixed length filled with the matching documen ```ts const [prev, next] = await queryContent('articles') - .only(['_path', 'title]) + .only(['_path', 'title']) .sort({ date: 1}) .where({ isArchived: false }) .findSurround('article-2')