From 1ad9abf3850c779f005008af0a0e4776410ad2e1 Mon Sep 17 00:00:00 2001 From: Geert-Jan Zwiers <34610306+GJZwiers@users.noreply.github.com> Date: Sat, 2 Oct 2021 15:20:17 +0200 Subject: [PATCH] docs: fix typo in typescript_faqs.md (#103) --- typescript/faqs.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/typescript/faqs.md b/typescript/faqs.md index 7a9adb4af..f884900a5 100644 --- a/typescript/faqs.md +++ b/typescript/faqs.md @@ -100,8 +100,8 @@ are: construct. - `export =` and `import =` are legacy TypeScript syntax which we do not support. -- Only `declare namespace` is support. Runtime `namespace` is legacy TypeScript - syntax that is not supported. +- Only `declare namespace` is supported. Runtime `namespace` is legacy + TypeScript syntax that is not supported. ### Why don't you support language service plugins or transformer plugins?