Fixed typo in API Reference. (#1697)
Added missing curly brace ('}') to API Reference docs.
This commit is contained in:
parent
9406f2fbe2
commit
cfd66d2c49
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ This function is required because Astro is a static site builder. That means tha
|
||||||
---
|
---
|
||||||
export async function getStaticPaths() {
|
export async function getStaticPaths() {
|
||||||
return [
|
return [
|
||||||
{ params: { /* required */ }, props: { /* optional */ },
|
{ params: { /* required */ }, props: { /* optional */ } },
|
||||||
{ params: { ... } },
|
{ params: { ... } },
|
||||||
{ params: { ... } },
|
{ params: { ... } },
|
||||||
// ...
|
// ...
|
||||||
|
|
Loading…
Reference in a new issue