Skip to content

Commit 36f2e12

Browse files
committed
2 parents 6ae228f + 4beff71 commit 36f2e12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/radio/radio-group.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export class RadioGroup implements OnInit, AfterContentInit, ControlValueAccesso
109109

110110
/**
111111
* Determines the render size of the `RadioComponent` inputs within the group.
112-
* (size `"default"` is being deprecated as of neutrino v1.2.0, please use `"md"` instead)
112+
* (size `"default"` is being deprecated as of next major release, please use `"md"` instead)
113113
* @type {("sm" | "md" | "default")}
114114
* @memberof RadioGroup
115115
*/
@@ -369,7 +369,7 @@ export class RadioGroup implements OnInit, AfterContentInit, ControlValueAccesso
369369
* @memberof RadioGroup
370370
*/
371371
public registerOnChange(fn: any) {
372-
this.propagateChange = (value) => {
372+
this.propagateChange = value => {
373373
this.value = value;
374374
fn(value);
375375
};

0 commit comments

Comments
 (0)