Skip to content

Commit 9db8f1f

Browse files
committed
Make VarName printing conform to whatever MCMCChains expects
1 parent 3c44f3c commit 9db8f1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/varname.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ function Base.show(io::IO, vn::VarName)
5858
print(io, getsym(vn))
5959
for indices in getindexing(vn)
6060
print(io, "[")
61-
join(io, indices, ", ")
61+
join(io, indices, ",")
6262
print(io, "]")
6363
end
6464
end

0 commit comments

Comments
 (0)