From 0eb85a1dfe991c7fb345f9fe0a362f1ac63c9954 Mon Sep 17 00:00:00 2001 From: Asumu Takikawa Date: Tue, 16 Oct 2012 01:31:20 -0400 Subject: [PATCH] Add Guide pointers to Refs on exceptions & control --- collects/scribblings/guide/control.scrbl | 2 +- collects/scribblings/reference/cont.scrbl | 2 ++ collects/scribblings/reference/exns.scrbl | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/collects/scribblings/guide/control.scrbl b/collects/scribblings/guide/control.scrbl index ea515735f0..ad6d409193 100644 --- a/collects/scribblings/guide/control.scrbl +++ b/collects/scribblings/guide/control.scrbl @@ -176,7 +176,7 @@ section. @; ---------------------------------------------------------------------- -@section{Continuations} +@section[#:tag "conts"]{Continuations} A @deftech{continuation} is a value that encapsulates a piece of an diff --git a/collects/scribblings/reference/cont.scrbl b/collects/scribblings/reference/cont.scrbl index da6e39d9ee..6ae4ed97a8 100644 --- a/collects/scribblings/reference/cont.scrbl +++ b/collects/scribblings/reference/cont.scrbl @@ -3,6 +3,8 @@ @title[#:tag "cont"]{Continuations} +@guideintro["conts"]{continuations} + See @secref["cont-model"] and @secref["prompt-model"] for general information about continuations. Racket's support for prompts and composable continuations most closely resembles Dorai Sitaram's diff --git a/collects/scribblings/reference/exns.scrbl b/collects/scribblings/reference/exns.scrbl index e6f2663096..7681aeaa86 100644 --- a/collects/scribblings/reference/exns.scrbl +++ b/collects/scribblings/reference/exns.scrbl @@ -3,6 +3,8 @@ @title[#:tag "exns"]{Exceptions} +@guideintro["exns"]{exceptions} + See @secref["exn-model"] for information on the Racket exception model. It is based on a proposal by Friedman, Haynes, and Dybvig @cite["Friedman95"].