Skip to content

Commit 5004fed

Browse files
committed
text: Fix internal link in takeaway #3
1 parent 2cd28ca commit 5004fed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

presentation/takeaway.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
\only<3>{
88
\begin{itemize}
99
\item No matter how many stack frames between the raising point and the exception handler
10-
\item Unless... see \#4
10+
\item Unless... see \hyperlink{bt-collection}{\beamergotobutton{\#5}}
1111
\end{itemize}
1212
}
1313
\item<4-> Catching an exception is linear complexity $O(n)$ in terms of number of installed exception \emph{handlers}
@@ -22,7 +22,7 @@
2222
\item Catching an exception early, in terms of traversed handlers, is cheaper
2323
\end{itemize}
2424
}
25-
\item<5-> Compiling with debug information (\mintinline{sh}{-g}) and activating backtrace collection (\mintinline{sh}{OCAMLRUNPARAM=b} or \mintinline{ocaml}{Printexc.record_backtrace b}) causes complexity of jumping to an handler to be $O(n)$ in terms of number of stack frames
25+
\item<5-> \hypertarget<5->{bt-collection}{} Compiling with debug information (\mintinline{sh}{-g}) and activating backtrace collection (\mintinline{sh}{OCAMLRUNPARAM=b} or \mintinline{ocaml}{Printexc.record_backtrace b}) causes complexity of jumping to an handler to be $O(n)$ in terms of number of stack frames
2626
\only<5>{
2727
\begin{itemize}
2828
\item Use \funcname{raise\_notrace} to inhibit the backtrace collection

0 commit comments

Comments
 (0)