diff --git a/pkgs/htdp-pkgs/htdp-lib/2htdp/universe.rkt b/pkgs/htdp-pkgs/htdp-lib/2htdp/universe.rkt index 1ad75fcb4e..fd7c93b0fb 100644 --- a/pkgs/htdp-pkgs/htdp-lib/2htdp/universe.rkt +++ b/pkgs/htdp-pkgs/htdp-lib/2htdp/universe.rkt @@ -390,7 +390,9 @@ (define-syntax (universe stx) (syntax-case stx () [(universe) (raise-syntax-error #f "expects an expression for the initial world" stx)] - [(universe u) (raise-syntax-error #f "expects at least an on-new and an on-msg clause after the initial world" stx)] + [(universe u) + (raise-syntax-error #f "expects at least an on-new and an on-msg clause after the initial world" + stx)] [(universe u bind ...) (let* ([args (->args 'universe stx #'u #'(bind ...) UniSpec void)] [dom (syntax->list #'(bind ...))])