Skip to content

Commit

Permalink
stacktraces doc: fix typos (#36658)
Browse files Browse the repository at this point in the history
  • Loading branch information
rfourquet authored Jul 24, 2020
1 parent 235784a commit 8825dab
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions doc/src/manual/stacktraces.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,18 +88,16 @@ Symbol("~/julia/usr/share/julia/stdlib/v0.7/REPL/src/REPL.jl")
julia> frame.line
5
julia> top_frame.linfo
julia> frame.linfo
MethodInstance for eval(::Module, ::Expr)
julia> top_frame.inlined
julia> frame.inlined
false
julia> top_frame.from_c
julia> frame.from_c
false
```
```julia-repl
julia> top_frame.pointer
julia> frame.pointer
0x00007f92d6293171
```

Expand Down Expand Up @@ -130,7 +128,7 @@ julia> example()
[...]
```

You may notice that in the example above the first stack frame points points at line 4, where
You may notice that in the example above the first stack frame points at line 4, where
[`stacktrace`](@ref) is called, rather than line 2, where *bad_function* is called, and `bad_function`'s
frame is missing entirely. This is understandable, given that [`stacktrace`](@ref) is called
from the context of the *catch*. While in this example it's fairly easy to find the actual source
Expand Down

2 comments on commit 8825dab

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Executing the daily benchmark build, I will reply here when finished:

@nanosoldier runbenchmarks(ALL, isdaily = true)

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your benchmark job has completed - possible performance regressions were detected. A full report can be found here. cc @ararslan

Please sign in to comment.