From 4b3f71eaa9a20a484f7f947a2e3f873b6b0b8bd0 Mon Sep 17 00:00:00 2001 From: cforney Date: Sat, 22 Jul 2023 02:12:40 +0200 Subject: [PATCH] fix: correct typo --- doc/learn/syntax-trees-typescript.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/learn/syntax-trees-typescript.md b/doc/learn/syntax-trees-typescript.md index c7ceb05b83ab..134df42ddfe9 100644 --- a/doc/learn/syntax-trees-typescript.md +++ b/doc/learn/syntax-trees-typescript.md @@ -243,7 +243,7 @@ To import the types in [JSDoc TypeScript][ts-jsdoc], use: ### xast (XML) [xast (e**x**tensible **a**bstract **s**yntax **t**ree)][xast] -extends unist with types specific for HTML such as `Element`, `CData`, +extends unist with types specific for XML such as `Element`, `CData`, `Instruction`, and many more. The specification includes a full list of nodes. The types are available in a types only package: [`@types/xast`][ts-xast].