From b157a877efe7e752882fc1a0ebc2606a710232a1 Mon Sep 17 00:00:00 2001 From: Jesper Noordsij <45041769+jnoordsij@users.noreply.github.com> Date: Wed, 29 May 2024 12:07:48 +0200 Subject: [PATCH] Fix typo in select.ts --- select/internal/select.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/select/internal/select.ts b/select/internal/select.ts index 0f02f78073..b4f86c533b 100644 --- a/select/internal/select.ts +++ b/select/internal/select.ts @@ -212,7 +212,7 @@ export abstract class Select extends selectBaseClass { /** * Returns an array of selected options. * - * NOTE: md-select only suppoprts single selection. + * NOTE: md-select only supports single selection. */ get selectedOptions() { return (this.getSelectedOptions() ?? []).map(([option]) => option);