Skip to content

Commit a95abf6

Browse files
committed
nit
1 parent 731dd08 commit a95abf6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/lib/list/list.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -228,18 +228,18 @@ export class MdSelectionList implements AfterContentInit, OnDestroy {
228228
/** The option components contained within this selection-list. */
229229
options: QueryList<MdListOption>;
230230

231-
// options which are selected.
231+
/** options which are selected. */
232232
selectedOptions: SelectionModel<MdListOption> = new SelectionModel<MdListOption>(true);
233233

234234
/**
235235
* Whether the ripple effect should be disabled on the list-items or not.
236-
* This flag only has an effect for `md-nav-list` components.
236+
* This flag only has an effect for `mat-selection-list` components.
237237
*/
238238
@Input()
239239
get disableRipple() { return this._disableRipple; }
240240
set disableRipple(value: boolean) { this._disableRipple = coerceBooleanProperty(value); }
241241

242-
// Whether the selection-list is disabled
242+
/** Whether the selection-list is disabled */
243243
@Input()
244244
get disabled() { return this._disabled; }
245245
set disabled(value: any) { this._disabled = coerceBooleanProperty(value); }

0 commit comments

Comments
 (0)