Skip to content

Commit a42a9b2

Browse files
committed
Fix arity of format at src/test.lisp
I deleted the newline arg but forgot of something: change the string specifier of format.
1 parent 2ba6e54 commit a42a9b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/test.lisp

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@
3636
(defun tests ()
3737
(format t "== EQUIVALENCE TESTS == ~c ~c" #\newline #\newline #\newline)
3838
(tests-run *equivalence-tests* '<=>)
39-
(format t "~c ~c == INFERENCE TESTS == ~c ~c" #\newline #\newline #\newline)
39+
(format t "~c == INFERENCE TESTS == ~c ~c" #\newline #\newline #\newline)
4040
(tests-run *inference-tests* '=>))

0 commit comments

Comments
 (0)