Skip to content

Commit 5d3da81

Browse files
committed
Fix print message of show on TracedRArray
1 parent 362841e commit 5d3da81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/TracedRArray.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ function Base.similar(x::TracedRArray{T,N}, ::Type{T2}) where {T,N,T2}
9696
end
9797

9898
function Base.show(io::IOty, X::TracedRArray{T,N}) where {T,N,IOty<:Union{IO,IOContext}}
99-
return print(io, "TracedRArray{", T, ",", N, "N}(", X.paths, ", ")
99+
return print(io, "TracedRArray{", T, ",", N, "N}(", X.paths, ")")
100100
# TODO this line segfaults if MLIR IR has not correctly been generated
101101
# return print(io, X.mlir_data, ")")
102102
end

0 commit comments

Comments
 (0)