Skip to content

Commit 56e65cf

Browse files
Fix 1 occurrence of format-identity
This use of `format` does nothing.
1 parent 2daca17 commit 56e65cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

typed-racket-test/succeed/shallow/untyped-struct-properties-with-self.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
(module ty-foo typed/racket/shallow
99
(require/typed (submod ".." foo) [prop:hi (Struct-Property (-> Self Any))] [hi-ref (-> Any (-> Any Void))])
1010
(struct bar () #:property prop:hi (λ ([self : bar])
11-
(display (format "instance bar\n" ))))
11+
(display "instance bar\n")))
1212
(hi-ref (bar))
1313
)
1414

0 commit comments

Comments
 (0)