Skip to content

Commit

Permalink
chore(docs): fix incorrect closing tag in tutorial (#36459)
Browse files Browse the repository at this point in the history
fix incorrect closing tag in tutorial
  • Loading branch information
mashehu committed Aug 24, 2022
1 parent 222793d commit b45debc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/docs/tutorial/part-2/index.mdx
Expand Up @@ -251,7 +251,7 @@ const AboutPage = () => {
}
// highlight-next-line
export const Head = () => <title>About Me<title/>
export const Head = () => <title>About Me</title>
export default AboutPage
```
Expand All @@ -268,7 +268,7 @@ You can add any valid `<head>` tags inside the function and they'll be added to
```js
export const Head = () => (
<>
<title>About Me<title/>
<title>About Me</title>
<meta name="description" content="Your description" />
</>
)
Expand Down

0 comments on commit b45debc

Please sign in to comment.