Skip to content

Commit 4969981

Browse files
committed
Fix incorrect isweak default
1 parent f2add7b commit 4969981

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/thunk.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ wrap_weak(t::WeakThunk) = t
247247
wrap_weak(t) = t
248248
isweak(t::WeakThunk) = true
249249
isweak(t::Thunk) = false
250-
isweak(t) = true
250+
isweak(t) = false
251251
Base.show(io::IO, t::WeakThunk) = (print(io, "~"); Base.show(io, t.x.value))
252252
Base.convert(::Type{WeakThunk}, t::Thunk) = WeakThunk(t)
253253
chunktype(t::WeakThunk) = chunktype(unwrap_weak_checked(t))

0 commit comments

Comments
 (0)