Skip to content

Commit

Permalink
make ssair output consistent with JuliaLang#40869 (JuliaLang#40885)
Browse files Browse the repository at this point in the history
  • Loading branch information
KristofferC authored and Amit Shirodkar committed Jun 9, 2021
1 parent b0dcef2 commit 71d3434
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion base/compiler/ssair/show.jl
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ function DILineInfoPrinter(linetable::Vector, showtypes::Bool=false)
if frame.line != typemax(frame.line) && frame.line != 0
print(io, ":", frame.line)
end
print(io, " within `", method_name(frame), "'")
print(io, " within `", method_name(frame), "`")
if collapse
method = method_name(frame)
while nctx < nframes
Expand Down
2 changes: 1 addition & 1 deletion doc/src/devdocs/reflection.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ as assignments, branches, and calls:
```jldoctest
julia> Meta.lower(@__MODULE__, :( [1+2, sin(0.5)] ))
:($(Expr(:thunk, CodeInfo(
@ none within `top-level scope'
@ none within `top-level scope`
1 ─ %1 = 1 + 2
│ %2 = sin(0.5)
│ %3 = Base.vect(%1, %2)
Expand Down

0 comments on commit 71d3434

Please sign in to comment.