change property and event to use camel case

Closes #6580
This commit is contained in:
BeastCode 2016-01-19 20:29:19 -08:00 committed by Misko Hevery
parent 0894318f50
commit 7a80f0d1e1
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ syntax(js):
`ng.core.Input(myProperty, myComponent);`|`ng.core.Input(`|`);` `ng.core.Input(myProperty, myComponent);`|`ng.core.Input(`|`);`
description: description:
Declares an input property that we can update via property binding (e.g. Declares an input property that we can update via property binding (e.g.
`<my-cmp [my-property]="someExpression">`). `<my-cmp [myProperty]="someExpression">`).
@cheatsheetItem @cheatsheetItem
@ -22,7 +22,7 @@ syntax(ts dart):
syntax(js): syntax(js):
`myEvent = new ng.core.EventEmitter(); ng.core.Output(myEvent, myComponent);`|`ng.core.Output(`|`);` `myEvent = new ng.core.EventEmitter(); ng.core.Output(myEvent, myComponent);`|`ng.core.Output(`|`);`
description: description:
Declares an output property that fires events to which we can subscribe with an event binding (e.g. `<my-cmp (my-event)="doSomething()">`). Declares an output property that fires events to which we can subscribe with an event binding (e.g. `<my-cmp (myEvent)="doSomething()">`).
@cheatsheetItem @cheatsheetItem