diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -22,4 +22,4 @@
 
 ## Version 1.1.0.0 (2025-07-14)
 
-* Remove initialSelectionChoosableItem class function; it didn't always have a sensible implementation and isn't needed
+* **BREAKING:** Remove initialSelectionChoosableItem class function; it didn't always have a sensible implementation and isn't needed
diff --git a/prompt-hs.cabal b/prompt-hs.cabal
--- a/prompt-hs.cabal
+++ b/prompt-hs.cabal
@@ -5,7 +5,7 @@
 -- see: https://github.com/sol/hpack
 
 name:           prompt-hs
-version:        1.1.0.0
+version:        1.1.0.1
 synopsis:       A user-friendly, dependently-typed library for asking your users questions
 description:    A library making use of the terminal package to prompt users for answers in a CLI context.
                 .
diff --git a/src/System/Prompt.hs b/src/System/Prompt.hs
--- a/src/System/Prompt.hs
+++ b/src/System/Prompt.hs
@@ -150,7 +150,7 @@
 -- | Gets the text which will be displayed to the user for a given instruction.
 instructionTextMulti :: ChoiceInstruction -> Text
 instructionTextMulti = \case
-  ChoiceInstructionNormal -> "You can type to search, or use the arrow keys. Press enter to select/deselect, and ctrl+enter to confirm."
+  ChoiceInstructionNormal -> "You can type to search, or use the arrow keys. Press space to select/deselect, and enter to confirm."
   ChoiceInstructionNoOptionSelected -> "No options match this search. Try expanding your filter with backspace to see more options."
 
 class IsPromptChoiceState a where
