Skip to content

Commit 6f7d32f

Browse files
chore: minor wording change in match select (#716)
1 parent 6575a6e commit 6f7d32f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

field_multiselect.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ func (m *MultiSelect[T]) RunAccessible(w io.Writer, r io.Reader) error {
723723
for {
724724
m.printOptions(w)
725725

726-
prompt := fmt.Sprintf("Input a number between %d and %d: ", 0, len(m.options.val))
726+
prompt := fmt.Sprintf("Enter a number between %d and %d: ", 0, len(m.options.val))
727727
choice = accessibility.PromptInt(w, r, prompt, 0, len(m.options.val), nil)
728728
if choice <= 0 {
729729
m.updateValue()

0 commit comments

Comments
 (0)