From 3b6e58670b284c620d905b65177b73ea89854e7b Mon Sep 17 00:00:00 2001 From: Junseong Park <39112954+jsparkdev@users.noreply.github.com> Date: Thu, 27 Feb 2025 22:33:09 +0900 Subject: [PATCH] i18n(ko-KR): update `tutorial/5-astro-api/2.mdx` (#11079) Co-authored-by: ArmandPhilippot <59021693+ArmandPhilippot@users.noreply.github.com> --- src/content/docs/ko/tutorial/5-astro-api/2.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/ko/tutorial/5-astro-api/2.mdx b/src/content/docs/ko/tutorial/5-astro-api/2.mdx index b4dc471824591..94f3b9bfc0992 100644 --- a/src/content/docs/ko/tutorial/5-astro-api/2.mdx +++ b/src/content/docs/ko/tutorial/5-astro-api/2.mdx @@ -65,7 +65,7 @@ import { Steps } from '@astrojs/starlight/components'; 배열의 각 경로에 새 prop을 제공한 다음 해당 prop을 함수 외부의 컴포넌트 템플릿에서 사용할 수 있도록 만드세요. - ```astro title="src/pages/tags/[tag].astro" ins={5,18} "props: {posts: allPosts}" + ```astro title="src/pages/tags/[tag].astro" ins={5,18} ins="props: {posts: allPosts}" --- import BaseLayout from '../../layouts/BaseLayout.astro';