summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTyler Butler <tyler@tylerbutler.com>2021-03-19 13:26:49 -0700
committerGitHub <noreply@github.com>2021-03-19 16:26:49 -0400
commit941a7c8ec9dd1da28923b45da6009576e65c172b (patch)
tree48458bc1535c0060e201e868eaf80d6586dcb7e5
parent2d55090d8cb506305b9d485d927d2de7a20dc87d (diff)
Typo
-rw-r--r--docs/examples/import_export.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/examples/import_export.md b/docs/examples/import_export.md
index 1fa194d0c..7eaea31ba 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.