diff --git a/core/combinators/combinators-docs.factor b/core/combinators/combinators-docs.factor index 783b8209d1..cabeddbbc1 100644 --- a/core/combinators/combinators-docs.factor +++ b/core/combinators/combinators-docs.factor @@ -361,7 +361,7 @@ HELP: case " { yes [ ] } ! Do nothing" " { no [ \"No way!\" throw ] }" " { maybe [ \"Make up your mind!\" print ] }" - " [ \"Invalid input; try again.\" print ]" + " [ drop \"Invalid input; try again.\" print ]" "} case" "Make up your mind!" }