In Angular 2.x, is there a difference between ng-model and NgModel in Angular 2? Referring to following Angular documentation
https://angular.io/docs/ts/latest/guide/architecture.html
It uses terminology [(ng-model)]="property"
to explain two-way data binding. Just below this, it uses the example using NgModel (instead of ng-model)
<input [(ngModel)]="hero.name">
I am confused if this is a typo (I guess not!).