Skip to content

Commit 6e8c29b

Browse files
authored
Fix show on InplaceableThunks
1 parent a3e76b1 commit 6e8c29b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/differentials/thunks.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,5 +121,5 @@ unthunk(x::InplaceableThunk) = unthunk(x.val)
121121
(x::InplaceableThunk)() = unthunk(x)
122122

123123
function Base.show(io::IO, x::InplaceableThunk)
124-
println(io, "InplaceableThunk($(repr(x.val)), $(repr(x.add!)))")
124+
println(io, "InplaceableThunk($(strip(repr(x.val))), $(strip(repr(x.add!))))")
125125
end

0 commit comments

Comments
 (0)