From a98a8c1caece1e33d3f92477a66ffe0d761f7bd3 Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Mon, 26 Jun 2017 19:14:19 +0200 Subject: [PATCH] Fix typo --- src/lib/autocomplete/autocomplete-trigger.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/autocomplete/autocomplete-trigger.ts b/src/lib/autocomplete/autocomplete-trigger.ts index 11099f2fba68..3d5fa4d7a577 100644 --- a/src/lib/autocomplete/autocomplete-trigger.ts +++ b/src/lib/autocomplete/autocomplete-trigger.ts @@ -359,7 +359,7 @@ export class MdAutocompleteTrigger implements ControlValueAccessor, OnDestroy { private _setTriggerValue(value: any): void { const toDisplay = this.autocomplete.displayWith ? this.autocomplete.displayWith(value) : value; // Simply falling back to an empty string if the display value is falsy does not work properly. - // The display value can also be the number zero and shouldn't fallback to an empty string. + // The display value can also be the number zero and shouldn't fall back to an empty string. this._element.nativeElement.value = toDisplay != null ? toDisplay : ''; }