From: Tim Düsterhus Date: Tue, 13 Apr 2021 11:55:05 +0000 (+0200) Subject: Fix typo in typescript.md X-Git-Tag: 5.6.final~273 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=b17bc89d1a05869f29b935f53e1c1dbdaf028992;p=GitHub%2FWoltLab%2Fwoltlab.github.io.git Fix typo in typescript.md --- diff --git a/docs/javascript/typescript.md b/docs/javascript/typescript.md index daf9a237..b39bd885 100644 --- a/docs/javascript/typescript.md +++ b/docs/javascript/typescript.md @@ -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";