diff options
author | Eduardo Julian | 2018-05-02 02:01:43 -0400 |
---|---|---|
committer | Eduardo Julian | 2018-05-02 02:01:43 -0400 |
commit | 0c38ade25c2b7f4456ed29b22b2585b407097311 (patch) | |
tree | f96b27cbef783711dd6792a8d4e317284deca0d4 /stdlib/source/lux/concurrency/task.lux | |
parent | 0f1be1eddc30bcff15b5da36b80f2b286fe0908d (diff) |
- Changed the syntax for the parameters of "syntax:".
Diffstat (limited to 'stdlib/source/lux/concurrency/task.lux')
-rw-r--r-- | stdlib/source/lux/concurrency/task.lux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/source/lux/concurrency/task.lux b/stdlib/source/lux/concurrency/task.lux index 0f95d428c..66cc12ff3 100644 --- a/stdlib/source/lux/concurrency/task.lux +++ b/stdlib/source/lux/concurrency/task.lux @@ -69,7 +69,7 @@ (#E.Success ma) ma)))) -(syntax: #export (task [type s.any]) +(syntax: #export (task {type s.any}) {#.doc (doc "Makes an uninitialized Task (in this example, of Unit)." (task Unit))} (wrap (list (` (: (..Task (~ type)) |