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.
1 parent c8640c4 commit e9f07e9Copy full SHA for e9f07e9
utils.rkt
@@ -31,12 +31,11 @@
31
(define (format-blame b)
32
(format (string-append "#<blame positive=~a\n"
33
" negative=~a\n"
34
- " contract=~a\n"
35
- " value=~a\n"
+ " contract=~s\n"
+ " value=~s\n"
36
" source=~a>\n")
37
(blame-positive b) (blame-negative b)
38
- (contract-name (blame-contract b))
39
- (blame-value b) (blame-source b)))
+ (blame-contract b) (blame-value b) (blame-source b)))
40
41
;; (listof (U path-string? submodule-path #f)) -> same
42
(define (shorten-paths ps*)
0 commit comments