Skip to content

Commit 19521e3

Browse files
authored
fix incorrect closing tag in tutorial
1 parent 1bf2358 commit 19521e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/docs/tutorial/part-2/index.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ const AboutPage = () => {
251251
}
252252
253253
// highlight-next-line
254-
export const Head = () => <title>About Me<title/>
254+
export const Head = () => <title>About Me</title>
255255
256256
export default AboutPage
257257
```
@@ -268,7 +268,7 @@ You can add any valid `<head>` tags inside the function and they'll be added to
268268
```js
269269
export const Head = () => (
270270
<>
271-
<title>About Me<title/>
271+
<title>About Me</title>
272272
<meta name="description" content="Your description" />
273273
</>
274274
)

0 commit comments

Comments
 (0)