Skip to content

Commit a98a8c1

Browse files
committed
Fix typo
1 parent a64a1c2 commit a98a8c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/autocomplete/autocomplete-trigger.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ export class MdAutocompleteTrigger implements ControlValueAccessor, OnDestroy {
359359
private _setTriggerValue(value: any): void {
360360
const toDisplay = this.autocomplete.displayWith ? this.autocomplete.displayWith(value) : value;
361361
// Simply falling back to an empty string if the display value is falsy does not work properly.
362-
// The display value can also be the number zero and shouldn't fallback to an empty string.
362+
// The display value can also be the number zero and shouldn't fall back to an empty string.
363363
this._element.nativeElement.value = toDisplay != null ? toDisplay : '';
364364
}
365365

0 commit comments

Comments
 (0)