Fix typo in typescript.md
authorTim Düsterhus <duesterhus@woltlab.com>
Tue, 13 Apr 2021 11:55:05 +0000 (13:55 +0200)
committerTim Düsterhus <duesterhus@woltlab.com>
Tue, 13 Apr 2021 11:55:05 +0000 (13:55 +0200)
docs/javascript/typescript.md

index daf9a23739f3ce12d06b22c2374494b2dab6b865..b39bd885417af93ca68bce279d5b3642fd71f8ff 100644 (file)
@@ -137,7 +137,7 @@ After completing this initial set-up you can start writing your first TypeScript
 The TypeScript compiler can be launched in Watch Mode by running `npx tsc -w`.
 
 WoltLab Suite’s modules can be imported using the standard ECMAScript module import syntax by specifying the full module name.
-The public API of the module can also be exported using the standard ECMASCript module export syntax.
+The public API of the module can also be exported using the standard ECMAScript module export syntax.
 
 ```typescript
 import * as Language from "WoltLabSuite/Core/Language";