We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
format-identity
1 parent 3088b60 commit bde87b8Copy full SHA for bde87b8
typed-racket-lib/typed-racket/typecheck/error-message.rkt
@@ -80,9 +80,9 @@
80
(unless object?
81
(when (and (F? row) (not (F? row*)))
82
(type-mismatch (format "Class with row variable `~a'" row)
83
- (format "Class with no row variable")))
+ "Class with no row variable"))
84
(when (and (F? row*) (not (F? row)))
85
- (type-mismatch (format "Class with no row variable")
+ (type-mismatch "Class with no row variable"
86
(format "Class with row variable `~a'" row*)))
87
(when (and (F? row) (F? row) (not (equal? row row*)))
88
0 commit comments