diff options
author | Eduardo Julian | 2021-09-14 16:41:18 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-09-14 16:41:18 -0400 |
commit | ccfa75463cd7c702f41c3dae5cbdaeade7ba5c31 (patch) | |
tree | c47937a8f62a25ef945a876b3af76c5fca989db9 /lux-scheme | |
parent | ea15b844b51ff60f9785c6791507f813729f85c3 (diff) |
Re-named "recur" to "again".
Diffstat (limited to 'lux-scheme')
-rw-r--r-- | lux-scheme/source/program.lux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lux-scheme/source/program.lux b/lux-scheme/source/program.lux index 0b1f97740..8a9c337c1 100644 --- a/lux-scheme/source/program.lux +++ b/lux-scheme/source/program.lux @@ -290,7 +290,7 @@ {try.#Failure error} {try.#Success lux_value} - (recur (++ idx) (array.write! idx (: Any lux_value) output))) + (again (++ idx) (array.write! idx (: Any lux_value) output))) {try.#Success output})))) (def: (read host_object) |