1
0
mirror of https://github.com/janet-lang/janet synced 2024-12-26 00:10:27 +00:00

Update whitespace issue.

This commit is contained in:
Calvin Rose 2018-11-28 16:38:48 -05:00
parent 86d2785d5e
commit b34e9a275c

View File

@ -40,7 +40,8 @@ static int minarity2(JanetFopts opts, JanetSlot *args) {
static int fixarity2(JanetFopts opts, JanetSlot *args) { static int fixarity2(JanetFopts opts, JanetSlot *args) {
(void) opts; (void) opts;
return janet_v_count(args) == 2; return janet_v_count(args) == 2;
}static int fixarity3(JanetFopts opts, JanetSlot *args) { }
static int fixarity3(JanetFopts opts, JanetSlot *args) {
(void) opts; (void) opts;
return janet_v_count(args) == 3; return janet_v_count(args) == 3;
} }