From f7800efc52b88e51b880b6efeb124afbed2778b1 Mon Sep 17 00:00:00 2001 From: Fedor Lapshin Date: Fri, 8 Dec 2023 15:49:23 +0300 Subject: [PATCH] docs(SelectMenu): correct a typo --- components.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components.go b/components.go index 6beb90575..41c81697a 100644 --- a/components.go +++ b/components.go @@ -217,7 +217,7 @@ type SelectMenu struct { // This value determines the maximal amount of selected items in the menu. // If MaxValues or MinValues are greater than one then the user can select multiple items in the component. MaxValues int `json:"max_values,omitempty"` - // List of default values for auto-populated select menu. + // List of default values for auto-populated select menus. // NOTE: Number of entries should be in the range defined by MinValues and MaxValues. DefaultValues []SelectMenuDefaultValue `json:"default_values,omitempty"`