Skip to content

Commit

Permalink
Remove extra close parenthesis in show of DiffFile (JuliaLang#39545)
Browse files Browse the repository at this point in the history
Minor cosmetic change to remove an extra close parentheseis `)` from the Oid-line.
  • Loading branch information
jaakkor2 authored and antoine-levitt committed May 9, 2021
1 parent 44e3e92 commit 5a097bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/LibGit2/src/types.jl
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ end

function Base.show(io::IO, df::DiffFile)
println(io, "DiffFile:")
println(io, "Oid: $(df.id))")
println(io, "Oid: $(df.id)")
println(io, "Path: $(df.path)")
println(io, "Size: $(df.size)")
end
Expand Down

0 comments on commit 5a097bc

Please sign in to comment.