Skip to content

Commit

Permalink
remove ;
Browse files Browse the repository at this point in the history
  • Loading branch information
IanButterworth committed Sep 2, 2024
1 parent d08de78 commit d041e9f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions stdlib/Profile/src/Profile.jl
Original file line number Diff line number Diff line change
@@ -268,7 +268,7 @@ function print(io::IO,
end
any_nosamples = true
if format === :tree
Base.print(io, "Overhead ╎ [+additional indent] Count File:Line; Function\n")
Base.print(io, "Overhead ╎ [+additional indent] Count File:Line Function\n")
Base.print(io, "=========================================================\n")
end
if groupby == [:task, :thread]
@@ -990,7 +990,7 @@ function tree_format(frames::Vector{<:StackFrameTree}, level::Int, cols::Int, ma
link = editor_link(path, li.line)
styled"{link=$link:$styled_path}"
end
strs[i] = Base.annotatedstring(stroverhead, "", base, strcount, " ", rich_file, "; ", fname)
strs[i] = Base.annotatedstring(stroverhead, "", base, strcount, " ", rich_file, " ", fname)
if frame.overhead > 0
strs[i] = styled"{bold:$(strs[i])}"
end
@@ -1160,7 +1160,7 @@ function print_tree(io::IO, bt::StackFrameTree{T}, cols::Int, fmt::ProfileFormat
filenamemap = FileNameMap()
worklist = [(bt, 0, 0, AnnotatedString(""))]
if !is_subsection
Base.print(io, "Overhead ╎ [+additional indent] Count File:Line; Function\n")
Base.print(io, "Overhead ╎ [+additional indent] Count File:Line Function\n")
Base.print(io, "=========================================================\n")
end
while !isempty(worklist)

0 comments on commit d041e9f

Please sign in to comment.