From b45debc9609db2460c0aa1d817edcf05532501bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20H=C3=B6rtenhuber?= Date: Wed, 24 Aug 2022 19:24:56 +0200 Subject: [PATCH] chore(docs): fix incorrect closing tag in tutorial (#36459) 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 )