diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-06-24 20:51:54 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-06-24 20:51:54 +0100 |
commit | c332c273453f7e08832d8f19b9aa8ae060783914 (patch) | |
tree | c95939689024d386519517be1483364b64657c6e /scripts | |
parent | Fix scope of some constants (diff) | |
download | toy-c332c273453f7e08832d8f19b9aa8ae060783914.zip |
Fix typo
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/toy.groovy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/toy.groovy b/scripts/toy.groovy index 10a93de..3a0d15a 100644 --- a/scripts/toy.groovy +++ b/scripts/toy.groovy @@ -64,7 +64,7 @@ return new Object() { .listFiles() .each({s -> if (stateIs("DEBUG")) { - show("Leading $s..."); + show("Loading $s..."); } Eval.me(s.text)(toy); }); |