summaryrefslogtreecommitdiff
path: root/docs/typescript
diff options
context:
space:
mode:
authorRaika Toriyama <pvcresin@users.noreply.github.com>2021-05-19 12:56:44 +0900
committerGitHub <noreply@github.com>2021-05-19 12:56:44 +0900
commit7d79d86e55a3c287455c6c8652184d9bc46330e1 (patch)
tree9343fe4d105424a85431fbd3a209d6b9fb3e69ee /docs/typescript
parent19e4080fa201cb837cf910d53bf949d017c17fb6 (diff)
docs(typescript): fix typo in faqs (#10682)
Diffstat (limited to 'docs/typescript')
-rw-r--r--docs/typescript/faqs.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/typescript/faqs.md b/docs/typescript/faqs.md
index 3b5b7e0b1..8ca9a7bff 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