From 06d076a6f234aab3c93d5af8bd3e7c1810ee7af0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Rodr=C3=ADguez=20Rodr=C3=ADguez?= Date: Thu, 10 Dec 2015 12:03:19 +0100 Subject: [PATCH] docs(kebab-case): fix typo on property Closes #5783 --- modules/angular2/docs/migration/kebab-case.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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