Skip to content

Commit

Permalink
Fix linting of markdown documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
timneutkens committed Mar 9, 2020
1 parent 1d16b10 commit 83b4fd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/basic-features/data-fetching.md
Expand Up @@ -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.
Expand Down

0 comments on commit 83b4fd1

Please sign in to comment.