summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGeoff Liu <cangming.liu@gmail.com>2015-04-21 14:04:47 -0600
committerGeoff Liu <cangming.liu@gmail.com>2015-04-21 14:04:47 -0600
commit8071dd3f6bac3ad4cb37b0d585067ca323f0d109 (patch)
tree1d80292f28598d0859d98a60f9b4cca59b392f2d
parenta5d38aedd5a6fe4632591c302270fde1c6613827 (diff)
parent107861875f63baa50caf3ea79c5a73f7b77734c1 (diff)
Merge pull request #1046 from eush77/fix/typescript-typo
[typescript/en] Fix typo
-rw-r--r--typescript.html.markdown2
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.