summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2022-12-15 17:30:42 -0500
committerDavid Thompson <dthompson2@worcester.edu>2023-01-06 16:00:25 -0500
commit07475b4dc99d29043fb0c3101db160efef336da8 (patch)
tree9d3126096fe3358e76181b015fa6b272c4de0c7d
parentbc2db79d974320a91cd954badac8d7e2237d3847 (diff)
Fix very silly argument order bug.
-rw-r--r--community-garden/edit.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/community-garden/edit.scm b/community-garden/edit.scm
index 9e56f87..bbfc0ad 100644
--- a/community-garden/edit.scm
+++ b/community-garden/edit.scm
@@ -33,6 +33,6 @@
(on approved-plants-vow
(match-lambda
((plant . _)
- ($ gardener 'plant plant x y))))))
+ ($ gardener 'plant x y plant))))))
(exp
(format #t "unrecognized command: ~a\n" exp)))))