diff --git a/modules/angular2/docs/migration/kebab-case.md b/modules/angular2/docs/migration/kebab-case.md index c5eb69b110..7e07f989ab 100644 --- a/modules/angular2/docs/migration/kebab-case.md +++ b/modules/angular2/docs/migration/kebab-case.md @@ -23,7 +23,7 @@ Notes: - while tag name are case sensitive, the best practice is to use dash case for component elements so that the browser interpret them as custom elements, - `(some-event)` would now bind to the `some-event` event (i.e. there is no implicit dash to camel case conversion), - - `(some-property)` would now bind to the `some-property` property (i.e. there is no implicit dash to camel case conversion), + - `[some-property]` would now bind to the `some-property` property (i.e. there is no implicit dash to camel case conversion), - `#some-var` is not allowed any more ("-" can not be used in variable names). ## Migration