We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23bb861 commit dcfee99Copy full SHA for dcfee99
src/main/clojure/clojure/core/async/impl/dispatch.clj
@@ -78,8 +78,9 @@
78
(when (or (< maj major)
79
(< min minor)
80
(< incr incremental))
81
- (throw (ex-info (str "Clojure version greater than or equal to " maj "." min "." incr
82
- " required to the the go block analyzer.")
+ (throw (ex-info (str "core.async go block expander requires Clojure version ≥"
+ maj "." min "." incr
83
+ " to load")
84
{:clojure-version *clojure-version*})))))
85
86
(def virtual-threads-available?
0 commit comments