diff options
author | Eduardo Julian | 2017-10-16 23:24:21 -0400 |
---|---|---|
committer | Eduardo Julian | 2017-10-16 23:24:21 -0400 |
commit | 6ffd0692d840298850307497f5275c44d0ff8f5d (patch) | |
tree | 0f93440bfc7aea35ba4583fa23828cac782bbdbc /stdlib/source/lux/concurrency/task.lux | |
parent | b5e5cceb9f985a31581a76d71301b393d88f34a8 (diff) |
- Re-named "Lux" type to "Meta".
- Moved lux/type/* under lux/meta/*.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/concurrency/task.lux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/lux/concurrency/task.lux b/stdlib/source/lux/concurrency/task.lux index 374acee46..fbc3cbf1e 100644 --- a/stdlib/source/lux/concurrency/task.lux +++ b/stdlib/source/lux/concurrency/task.lux @@ -6,8 +6,8 @@ monad ["ex" exception #+ Exception]) (concurrency ["P" promise]) - [macro] - (macro ["s" syntax #+ syntax: Syntax]) + [meta] + (meta ["s" syntax #+ syntax: Syntax]) )) (type: #export (Task a) |