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 Feb 6, 2021
1 parent 55baf8a commit 75ede4a
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 75ede4a

Please sign in to comment.