From 83b4fd150910917d4f91d8f743df0cc4d3ca5696 Mon Sep 17 00:00:00 2001 From: Tim Neutkens Date: Mon, 9 Mar 2020 10:54:22 +0100 Subject: [PATCH] Fix linting of markdown documentation --- docs/basic-features/data-fetching.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/basic-features/data-fetching.md b/docs/basic-features/data-fetching.md index 6185e2b2c80caf0..36efd64056ff534 100644 --- a/docs/basic-features/data-fetching.md +++ b/docs/basic-features/data-fetching.md @@ -192,7 +192,7 @@ export async function getStaticPaths() { // Get the paths we want to pre-render based on posts const paths = posts.map(post => ({ - params: {id: post.id} + params: { id: post.id }, })) // We'll pre-render only these paths at build time.