Skip to content

Commit

Permalink
fix typo in markdown rendering of SVG images (JuliaLang#25987)
Browse files Browse the repository at this point in the history
  • Loading branch information
stevengj authored Feb 11, 2018
1 parent 80a8175 commit e59dabe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/Markdown/src/render/rich.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function tohtml(io::IO, m::MIME"image/png", img)
print(io, "\" />")
end

function tohtml(m::MIME"image/svg+xml", img)
function tohtml(io::IO, m::MIME"image/svg+xml", img)
show(io, m, img)
end

Expand Down

0 comments on commit e59dabe

Please sign in to comment.