Skip to content

Commit 80f5c15

Browse files
committed
That's an oopsie
1 parent d3bb662 commit 80f5c15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/basilisp/core.lpy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6448,7 +6448,7 @@
64486448
(let [name-str (name interface-name)
64496449
method-sigs (->> methods
64506450
(map (fn [[method-name args docstring]]
6451-
[method-name (conj args 'self) docstring]))
6451+
[method-name (vec (concat ['self] args)) docstring]))
64526452
(map #(list 'quote %)))]
64536453
`(def ~interface-name
64546454
(gen-interface :name ~name-str

0 commit comments

Comments
 (0)