From 19521e3146665d71f6e46d0ac70b58f0ae31faf0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20H=C3=B6rtenhuber?= Date: Wed, 24 Aug 2022 13:28:49 +0200 Subject: [PATCH] fix incorrect closing tag in tutorial --- docs/docs/tutorial/part-2/index.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/tutorial/part-2/index.mdx b/docs/docs/tutorial/part-2/index.mdx index bdd5fcbb43cdb..fabe47fecd06b 100644 --- a/docs/docs/tutorial/part-2/index.mdx +++ b/docs/docs/tutorial/part-2/index.mdx @@ -251,7 +251,7 @@ const AboutPage = () => { } // highlight-next-line -export const Head = () => About Me<title/> +export const Head = () => <title>About Me export default AboutPage ``` @@ -268,7 +268,7 @@ You can add any valid `` tags inside the function and they'll be added to ```js export const Head = () => ( <> - About Me<title/> + <title>About Me )