diff options
author | Eugene Sharygin <eush77@gmail.com> | 2015-04-21 23:01:08 +0300 |
---|---|---|
committer | Eugene Sharygin <eush77@gmail.com> | 2015-04-21 23:01:08 +0300 |
commit | 107861875f63baa50caf3ea79c5a73f7b77734c1 (patch) | |
tree | 1d80292f28598d0859d98a60f9b4cca59b392f2d /typescript.html.markdown | |
parent | a5d38aedd5a6fe4632591c302270fde1c6613827 (diff) |
[typescript/en] Fix typo
Diffstat (limited to 'typescript.html.markdown')
-rw-r--r-- | typescript.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/typescript.html.markdown b/typescript.html.markdown index 27a1f71a..e9135510 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 oposed to [JavaScript] (../javascript/). +This article will focus only on TypeScript extra syntax, as opposed to [JavaScript] (../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. |