summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndre Polykanine A.K.A. Menelion ElensĂșlĂ« <andre@oire.org>2017-10-26 02:22:26 +0300
committerGitHub <noreply@github.com>2017-10-26 02:22:26 +0300
commit2e7207a1307bd625d7670e0c347b3cd97832eca7 (patch)
tree4c2a7d2536c9887fb77ad0e78445c53cce657c6e
parent70c9d58bb16538d43bfad5c3fdf3bf466ca0ffab (diff)
parent838efd36532faf52d631bbc798b284bbc7867479 (diff)
Merge pull request #2951 from allwinpb/master
[typescript/en] Fix link to javascript docs
-rw-r--r--typescript.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/typescript.html.markdown b/typescript.html.markdown
index 44fd791a..10f01ebc 100644
--- a/typescript.html.markdown
+++ b/typescript.html.markdown
@@ -9,7 +9,7 @@ TypeScript is a language that aims at easing development of large scale applicat
TypeScript adds common concepts such as classes, modules, interfaces, generics and (optional) static typing to JavaScript.
It is a superset of JavaScript: all JavaScript code is valid TypeScript code so it can be added seamlessly to any project. The TypeScript compiler emits JavaScript.
-This article will focus only on TypeScript extra syntax, as opposed to [JavaScript](javascript.html.markdown).
+This article will focus only on TypeScript extra syntax, as opposed to [JavaScript](/docs/javascript).
To test TypeScript's compiler, head to the [Playground] (http://www.typescriptlang.org/Playground) where you will be able to type code, have auto completion and directly see the emitted JavaScript.