From e2b8fdb5534cd841f1e2ca4e4e2498b1ed408403 Mon Sep 17 00:00:00 2001 From: Sorawee Porncharoenwase Date: Mon, 3 Aug 2020 23:39:21 -0700 Subject: [PATCH] cs: change multiple values mismatch error to match bc Related to #3325 --- racket/src/cs/rumble/error.ss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/racket/src/cs/rumble/error.ss b/racket/src/cs/rumble/error.ss index 8e14de988e..6b7a9013f7 100644 --- a/racket/src/cs/rumble/error.ss +++ b/racket/src/cs/rumble/error.ss @@ -428,7 +428,7 @@ (define (raise-binding-result-arity-error expected-args args) (apply raise-result-arity-error #f (length expected-args) - "\n at: local-binding form" + "\n in: local-binding form" args)) (define (raise-definition-result-arity-error expected-args args) @@ -436,7 +436,7 @@ (length expected-args) (if (null? expected-args) "" - (string-append "\n at: definition of " + (string-append "\n in: definition of " (symbol->string (car expected-args)) " ...")) args))