diff --git a/core/continuations/continuations-docs.factor b/core/continuations/continuations-docs.factor index 8775e599a6..dfecf75f90 100644 --- a/core/continuations/continuations-docs.factor +++ b/core/continuations/continuations-docs.factor @@ -206,8 +206,8 @@ HELP: throw-restarts { $examples "Try invoking one of the two restarts which are offered after the below code throws an error:" { $code - ": restart-test" - " \"Oops!\" { { \"One\" 1 } { \"Two\" 2 } } condition" + ": restart-test ( -- )" + " \"Oops!\" { { \"One\" 1 } { \"Two\" 2 } } throw-restarts" " \"You restarted: \" write . ;" "restart-test" }