Skip to content

Commit

Permalink
Remove comment symbol before callout
Browse files Browse the repository at this point in the history
  • Loading branch information
robertoaloi committed Apr 17, 2017
1 parent 505c356 commit 91bfac5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions chapters/debugging.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -100,16 +100,16 @@ $ erl
Erlang/OTP 19 [erts-8.2] [...]
Eshell V8.2 (abort with ^G)
1> l(redbug). % <1>
1> l(redbug). <1>
{module,redbug}
2> redbug:start("lists:sort/1"). % <2>
2> redbug:start("lists:sort/1"). <2>
{30,1}
3> lists:sort([3,2,1]).
[1,2,3]
% 15:20:20 <0.31.0>({erlang,apply,2}) <3>
% lists:sort([3,2,1])
redbug done, timeout - 1 % <4>
redbug done, timeout - 1 <4>
----
<1> First, we ensure that the `redbug` module is available and loaded.
<2> We then start `redbug`. We are interested in the function
Expand Down

0 comments on commit 91bfac5

Please sign in to comment.