[FIX] Some typos in Angular2 and Typescript article

This commit is contained in:
BernhardBezdek
2017-04-10 15:41:33 +02:00
committed by bernhard.bezdek
parent caeb85587c
commit 57dfc56401
2 changed files with 3 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ quadrant: languages-and-frameworks
The latest version of the Angular Framework, which is used for large single-page applications.
[Angular 2](https://angular.io/) is a complete rewrite of Angular 1 — any many things have changed compared to the first version. The latest best practices and toolings from the JavaScript community have found their way into Angular2.
[Angular 2](https://angular.io/) is a complete rewrite of Angular 1 — many things have changed compared to the first version. The latest best practices and toolings from the JavaScript community have found their way into Angular2.
It supports DI (dependency injection), it has a clean inheritance and a good separation of concerns. Angular2 follows the [web component standards](https://www.w3.org/standards/techs/components#w3c_all) to avoid negative side effects between components.

View File

@@ -7,7 +7,7 @@ quadrant: languages-and-frameworks
[TypeScript](https://www.typescriptlang.org/) is a language that gets transpiled to native JavaScript code.
It offers support for the latests EcmaScript features and has strict typing and support for interfaces built in.
It offers support for the latest EcmaScript features and has strict typing and support for interfaces built in.
JavaScript scoping, which led into recurring workarounds such as **var self = this, myFunc.bind(this)_,_**was eliminated in TypeScript.
@@ -15,7 +15,7 @@ In TypeScript **this** stays **this**, which leads to more readable and understa
TypeScript continues to be actively developed by Microsoft and is also well-Integrated in today's IDEs.
The excellent strucure and the possibilities for extension make it a good choice to consider for larger JavaScript projects.
The excellent structure and the possibilities for extension make it a good choice to consider for larger JavaScript projects.
Typescript was the choice for [Angular 2+](/languages-and-frameworks/angular-2.html) and one can assume that it will get more traction with the success of Angular 2 in the future.