Skip to content

Commit 17bcf45

Browse files
authored
Merge pull request #1304 from herbie-fp/fix-fmt
Fix `fmt` on `main`
2 parents 3b7d9e1 + d2dd33e commit 17bcf45

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

infra/convert-demo.rkt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414

1515
(define (format-expr is-version-10 expr)
1616
(match expr
17-
[(? string?)
18-
(or (string->number expr) (raise (error "string that is not a num")))]
17+
[(? string?) (or (string->number expr) (raise (error "string that is not a num")))]
1918
[(list op args ...) (format-op (cons op (map (curry format-expr is-version-10) args)))]
2019
[(? symbol?)
2120
(if is-version-10

0 commit comments

Comments
 (0)