Skip to content

Commit

Permalink
format tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
IanButterworth committed Apr 19, 2021
1 parent 187b03d commit 775bc11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base/stat.jl
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ function show(io::IO, st::StatStruct)
end
str = if compact
sprint() do iob
print(iob, "`$(st.desc)`")
print(iob, "$(st.desc)")
print(iob, " size: $(st.size) bytes")
print(iob, " device: $(st.device)")
print(iob, " inode: $(st.inode)")
Expand All @@ -100,7 +100,7 @@ function show(io::IO, st::StatStruct)
end
else
sprint() do iob
println(iob, "StatStruct for `$(st.desc)`")
println(iob, "StatStruct for $(st.desc)")
println(iob, " size: $(st.size) bytes")
println(iob, " device: $(st.device)")
println(iob, " inode: $(st.inode)")
Expand Down

0 comments on commit 775bc11

Please sign in to comment.