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.
1 parent d82c132 commit fd06e92Copy full SHA for fd06e92
src/jlsl/types.janet
@@ -112,7 +112,7 @@
112
(put functions-called function (table/proto-flatten scope))
113
(def args-and-params (try
114
(zip args (function/param-sigs function))
115
- ([_ _]
+ ([_]
116
(errorf "wrong number of arguments to function %s, expected %q, got %q"
117
(/name function)
118
(length (function/param-sigs function))
tests/suite.janet
@@ -819,7 +819,7 @@ img {
819
820
(def old-file-name (try
821
(slice ($<_ git show HEAD:tests/ ^ ,ref-path >[stderr :null]) 3)
822
- ([_ _] nil)))
+ ([_] nil)))
823
($ ln -fs (string "../" new-file-name) ,ref-path)
824
825
(def changed? (and old-file-name (not= old-file-name new-file-name)))
0 commit comments