diff options
author | Eduardo Julian | 2018-08-22 19:42:17 -0400 |
---|---|---|
committer | Eduardo Julian | 2018-08-22 19:42:17 -0400 |
commit | b60d60ef6c0c70821991991fe716935e73038832 (patch) | |
tree | 1f1e88e501d5884e8f7113e8f15de9bf08845f56 /stdlib/source/lux/concurrency/actor.lux | |
parent | 6c896325238b63b6fc09f774968be6da0b9c89c1 (diff) |
No more multi-line text.
Diffstat (limited to 'stdlib/source/lux/concurrency/actor.lux')
-rw-r--r-- | stdlib/source/lux/concurrency/actor.lux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/lux/concurrency/actor.lux b/stdlib/source/lux/concurrency/actor.lux index a9154877e..0af0d09f9 100644 --- a/stdlib/source/lux/concurrency/actor.lux +++ b/stdlib/source/lux/concurrency/actor.lux @@ -140,8 +140,8 @@ #end default-end}) (def: #export (poison actor) - {#.doc "Kills the actor by sending a message that will kill it upon processing, - but allows the actor to handle previous messages."} + {#.doc (doc "Kills the actor by sending a message that will kill it upon processing," + "but allows the actor to handle previous messages.")} (All [s] (-> (Actor s) (IO Bit))) (send (function (_ state self) (task.throw poisoned [])) |