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.
inline-unnecessary-begin
1 parent f21a55d commit 1cb2698Copy full SHA for 1cb2698
typed-racket-lib/typed-racket/typecheck/tc-let-unit.rkt
@@ -256,12 +256,12 @@
256
non-bindings
257
expected
258
#:before-check-body
259
- (λ () (begin (for ([expr (in-list remaining-exprs)]
260
- [results (in-list given-rhs-types)])
261
- (match results
262
- [(list (tc-result: ts fs os) ...)
263
- (tc-expr/check expr (ret ts fs os))]))
264
- (check-thunk))))])))))
+ (λ ()
+ (for ([expr (in-list remaining-exprs)]
+ [results (in-list given-rhs-types)])
+ (match results
+ [(list (tc-result: ts fs os) ...) (tc-expr/check expr (ret ts fs os))]))
+ (check-thunk)))])))))
265
266
;; An lr-clause is a
267
;; (lr-clause (Listof Identifier) Syntax)
0 commit comments