We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7d5d947 + 1f96952 commit 26ab48bCopy full SHA for 26ab48b
CHANGELOG.md
@@ -4,6 +4,8 @@
4
5
## Fixed
6
7
+- Fixed puget printer for futures
8
+
9
## Changed
10
11
# 2.12.219 (2025-02-06 / 9e6942a)
src/lambdaisland/deep_diff2/puget/printer.cljc
@@ -305,7 +305,7 @@
305
java.util.concurrent.Future
306
(fn future-handler
307
[printer value]
308
- (let [doc (if (future-done? promise)
+ (let [doc (if (future-done? value)
309
(format-doc printer @value)
310
(color/document printer :nil "pending"))]
311
(format-unknown printer value "Future" doc)))
0 commit comments