Skip to content

Commit 91223c8

Browse files
committed
Retain when workload not supplied, defaults to :mixed docstring fragment
1 parent 2936e4b commit 91223c8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/clojure/clojure/core/async.clj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,9 @@ return nil for unexpected contexts."
496496
497497
:io - may do blocking I/O but must not do extended computation
498498
:compute - must not ever block
499-
:mixed - anything else (default)"
499+
:mixed - anything else (default)
500+
501+
when workload not supplied, defaults to :mixed"
500502
([f] (thread-call f :mixed))
501503
([f workload]
502504
(let [c (chan 1)

0 commit comments

Comments
 (0)