From 7a80f0d1e1fde266d411e873530e6c5c3f0bba7f Mon Sep 17 00:00:00 2001 From: BeastCode Date: Tue, 19 Jan 2016 20:29:19 -0800 Subject: [PATCH] change property and event to use camel case Closes #6580 --- .../docs/cheatsheet/directive-and-component-decorators.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/@angular/docs/cheatsheet/directive-and-component-decorators.md b/modules/@angular/docs/cheatsheet/directive-and-component-decorators.md index dcfe62e755..d4f85e2910 100644 --- a/modules/@angular/docs/cheatsheet/directive-and-component-decorators.md +++ b/modules/@angular/docs/cheatsheet/directive-and-component-decorators.md @@ -13,7 +13,7 @@ syntax(js): `ng.core.Input(myProperty, myComponent);`|`ng.core.Input(`|`);` description: Declares an input property that we can update via property binding (e.g. -``). +``). @cheatsheetItem @@ -22,7 +22,7 @@ syntax(ts dart): syntax(js): `myEvent = new ng.core.EventEmitter(); ng.core.Output(myEvent, myComponent);`|`ng.core.Output(`|`);` description: -Declares an output property that fires events to which we can subscribe with an event binding (e.g. ``). +Declares an output property that fires events to which we can subscribe with an event binding (e.g. ``). @cheatsheetItem