Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 3190c59

Browse files
tuurboIgorMinar
authored andcommitted
fix(changelog): fix ngFor on template
Closes #5785
1 parent 30e25ac commit 3190c59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/angular2/docs/migration/kebab-case.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Notes:
3838
- `<my-cmp (my-event)="action()">` should be changed to `<my-cmp (myEvent)="action()">`,
3939
- `<my-cmp [(my-prop)]="prop">` should be changed to `<my-cmp [(myProp)]="prop">`,
4040
- `<input #my-input>` should be changed to `<input #myInput>`,
41-
- `<template ng-for #my-item [ng-for-of]=items #my-index="index">` should be changed to `<template ngFor="#my-item" [ngForOf]=items #myIndex="index">`,
41+
- `<template ng-for #my-item [ng-for-of]=items #my-index="index">` should be changed to `<template ngFor #my-item [ngForOf]=items #myIndex="index">`,
4242

4343
Note: while the tag names are now case-sensitive the best practice is to keep them lower-dash-cased so that the browser
4444
treat them as custom elements. Using dashes in custom element names is required by the [Custom Element HTML Spec](http://www.w3.org/TR/custom-elements/#concepts).

0 commit comments

Comments
 (0)