summaryrefslogtreecommitdiffhomepage
path: root/typescript.html.markdown
diff options
context:
space:
mode:
authorGabriel Gomes <gabrielgomes639@gmail.com>2016-06-26 10:03:09 -0300
committerven <vendethiel@hotmail.fr>2016-06-26 15:03:09 +0200
commitd9caa2436e6ebe63e9b2287725c4e104ddcb88cb (patch)
tree4092050a068eed869df6e06a9d0a86e4580ccabe /typescript.html.markdown
parent41cf3e7421fe7547ee55ac551438c0645281de33 (diff)
Added typescript-pt.html.markdown (#1699)
* link for learning of javascript adjusted * Added typescript-pt.html.markdown
Diffstat (limited to 'typescript.html.markdown')
-rw-r--r--typescript.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/typescript.html.markdown b/typescript.html.markdown
index 21f1ce7d..1d712369 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/).
+This article will focus only on TypeScript extra syntax, as opposed to [JavaScript](javascript.html.markdown).
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.