summaryrefslogtreecommitdiff
path: root/docs/src
diff options
context:
space:
mode:
authorGravatar Nate Moore <natemoo-re@users.noreply.github.com> 2021-12-13 12:30:19 -0600
committerGravatar GitHub <noreply@github.com> 2021-12-13 10:30:19 -0800
commitd9e65227b2d93f31514a0f0781019187e9a31603 (patch)
treed529c32ba308f34308bc18d292f26fbbd3f03a7d /docs/src
parent80c65e94973b937b408aabc39f75446ae03bf1e8 (diff)
downloadastro-d9e65227b2d93f31514a0f0781019187e9a31603.tar.gz
astro-d9e65227b2d93f31514a0f0781019187e9a31603.tar.zst
astro-d9e65227b2d93f31514a0f0781019187e9a31603.zip
fix(#2190): migration typo (#2191)
Diffstat (limited to 'docs/src')
-rw-r--r--docs/src/pages/de/migration/0.21.0.md2
-rw-r--r--docs/src/pages/migration/0.21.0.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/src/pages/de/migration/0.21.0.md b/docs/src/pages/de/migration/0.21.0.md
index 1ec7742c7..3d8409ded 100644
--- a/docs/src/pages/de/migration/0.21.0.md
+++ b/docs/src/pages/de/migration/0.21.0.md
@@ -68,7 +68,7 @@ In Astro v0.21 können Komponenten aus beliebigen Frameworks in Markdown-Dateien
```markdown
---
-Layout: '...'
+layout: '...'
setup: |
import MeineReactKomponente from '../components/MeineReactKomponente.jsx'
---
diff --git a/docs/src/pages/migration/0.21.0.md b/docs/src/pages/migration/0.21.0.md
index 3adc7e6b6..08154ee7c 100644
--- a/docs/src/pages/migration/0.21.0.md
+++ b/docs/src/pages/migration/0.21.0.md
@@ -68,7 +68,7 @@ In Astro v0.21, Components from any framework can be used within Markdown files.
```markdown
---
-Layout: '...'
+layout: '...'
setup: |
import MyReactComponent from '../components/MyReactComponent.jsx'
---