From a1e35f20bb613498d6f22313d5ebcb77b9b642df Mon Sep 17 00:00:00 2001 From: Nikita Date: Wed, 21 Dec 2016 17:51:14 +0200 Subject: [PATCH] Update button-radio.directive.ts Small API Ref description improvements --- src/buttons/button-radio.directive.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/buttons/button-radio.directive.ts b/src/buttons/button-radio.directive.ts index 5d50140c34..3f84badd6f 100644 --- a/src/buttons/button-radio.directive.ts +++ b/src/buttons/button-radio.directive.ts @@ -19,11 +19,11 @@ export class ButtonRadioDirective implements ControlValueAccessor, OnInit { public onChange:any = Function.prototype; public onTouched:any = Function.prototype; - /** radio button value, will be set to `ngModel` */ + /** Radio button value, will be set to `ngModel` */ @Input() public btnRadio:any; - /** if `true` radio button can be unchecked */ + /** If `true` — radio button can be unchecked */ @Input() public uncheckable:boolean; - /** current value of radio component or group */ + /** Current value of radio component or group */ @Input() public value:any; protected el: ElementRef;