From 941a7c8ec9dd1da28923b45da6009576e65c172b Mon Sep 17 00:00:00 2001 From: Tyler Butler Date: Fri, 19 Mar 2021 13:26:49 -0700 Subject: [PATCH] Typo --- docs/examples/import_export.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples/import_export.md b/docs/examples/import_export.md index 1fa194d0c1..7eaea31ba7 100644 --- a/docs/examples/import_export.md +++ b/docs/examples/import_export.md @@ -115,6 +115,6 @@ export function multiply(a: number, b: number): number { ``` All functions, classes, constants and variables which need to be accessible -inside external modules must be exported. Either by pretending them with the +inside external modules must be exported. Either by prepending them with the `export` keyword or including them in an export statement at the bottom of the file.