diff options
author | Eduardo Julian | 2021-09-14 02:56:22 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-09-14 02:56:22 -0400 |
commit | 971767f1eafb22208912353d8709f11081f2d3c8 (patch) | |
tree | 9b043f1238af49a33c1a625d737c9f0e1abb6e99 /lux-ruby | |
parent | 1c93f003f73116202b1f964b0d1b6d3f07b69fb0 (diff) |
Re-named "Identifier" to "Symbol".
Diffstat (limited to 'lux-ruby')
-rw-r--r-- | lux-ruby/source/program.lux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lux-ruby/source/program.lux b/lux-ruby/source/program.lux index 59a840169..2b9831d04 100644 --- a/lux-ruby/source/program.lux +++ b/lux-ruby/source/program.lux @@ -136,7 +136,7 @@ (monad.each meta.monad (function (_ class) (do meta.monad - [var (macro.identifier "input")] + [var (macro.symbol "input")] (in (code.record (list [var class]))))) input_classes)) |