From 0c40446bed093909c1f744233909b5044c1c60d8 Mon Sep 17 00:00:00 2001 From: Raika Toriyama Date: Wed, 19 May 2021 12:56:44 +0900 Subject: [PATCH] docs(typescript): fix typo in faqs (#10682) --- docs/typescript/faqs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/typescript/faqs.md b/docs/typescript/faqs.md index 3b5b7e0b1a..8ca9a7bff7 100644 --- a/docs/typescript/faqs.md +++ b/docs/typescript/faqs.md @@ -82,7 +82,7 @@ are using the TypeScript compiler to emit the code, it will follow the same This means that certain language features are not supportable. Those features are: -- Re-exporting of types is ambigious and requires to know if the source module +- Re-exporting of types is ambiguous and requires to know if the source module is exporting runtime code or just type information. Therefore, it is recommended that you use `import type` and `export type` for type only imports and exports. This will help ensure that when the code is emitted, that all the