Skip to content

Commit bde87b8

Browse files
resyntax-ci[bot]samth
authored andcommitted
Fix 2 occurrences of format-identity
This use of `format` does nothing.
1 parent 3088b60 commit bde87b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

typed-racket-lib/typed-racket/typecheck/error-message.rkt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@
8080
(unless object?
8181
(when (and (F? row) (not (F? row*)))
8282
(type-mismatch (format "Class with row variable `~a'" row)
83-
(format "Class with no row variable")))
83+
"Class with no row variable"))
8484
(when (and (F? row*) (not (F? row)))
85-
(type-mismatch (format "Class with no row variable")
85+
(type-mismatch "Class with no row variable"
8686
(format "Class with row variable `~a'" row*)))
8787
(when (and (F? row) (F? row) (not (equal? row row*)))
8888
(type-mismatch (format "Class with row variable `~a'" row)

0 commit comments

Comments
 (0)