[docs] fix angle bracket in mdx (#51920)

This commit is contained in:
VelociRaptor 2023-06-29 04:31:24 +05:30 committed by GitHub
parent 0bd9b4bbdf
commit d390d75e1f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -366,7 +366,7 @@ async function main() {
.use(rehypeStringify) // Convert AST into serialized HTML
.process('Hello, Next.js!')
console.log(String(file)) // <p>>Hello, Next.js!</p>
console.log(String(file)) // <p>Hello, Next.js!</p>
}
```