diff options
author | Eduardo Julian | 2018-05-02 00:20:42 -0400 |
---|---|---|
committer | Eduardo Julian | 2018-05-02 00:20:42 -0400 |
commit | 0144da58ba856bd6f6072b588bbd076c9c3fdb36 (patch) | |
tree | 19aa593327891ced4d28ef1fd0a3394c70ffa38d /stdlib/source/lux/concurrency/task.lux | |
parent | e4e67f0427d93b3686366ffe9f14a4751690101e (diff) |
- Re-named "Applicative" to "Apply".
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 1ebfa181c..0f95d428c 100644 --- a/stdlib/source/lux/concurrency/task.lux +++ b/stdlib/source/lux/concurrency/task.lux @@ -2,7 +2,7 @@ lux (lux (data ["E" error]) (control ["F" functor] - ["A" applicative] + ["A" apply] monad ["ex" exception #+ Exception]) (concurrency ["P" promise]) @@ -42,7 +42,7 @@ (#E.Success (f a)))) fa))) -(struct: #export _ (A.Applicative Task) +(struct: #export _ (A.Apply Task) (def: functor Functor<Task>) (def: (apply ff fa) |