Fixed typo in API Reference. (#1697)

Added missing curly brace ('}') to API Reference docs.
This commit is contained in:
Isaac McFadyen 2021-11-01 15:11:50 -04:00 committed by GitHub
parent 9406f2fbe2
commit cfd66d2c49
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -107,7 +107,7 @@ This function is required because Astro is a static site builder. That means tha
---
export async function getStaticPaths() {
return [
{ params: { /* required */ }, props: { /* optional */ },
{ params: { /* required */ }, props: { /* optional */ } },
{ params: { ... } },
{ params: { ... } },
// ...