Call out to sec. 5 in sec. 2

original commit: db9efa61aa1c669485535911f2dafee0795c66b3
This commit is contained in:
Asumu Takikawa 2013-09-09 15:25:13 -04:00
parent 0fa22e3600
commit 36bca721ba
2 changed files with 5 additions and 1 deletions

View File

@ -114,6 +114,10 @@ process of elimination we can determine that @racket[t] must be a
@racket[node]. Therefore, we can use accessors such as
@racket[node-left] and @racket[node-right] with @racket[t] as input.
The process by which Typed Racket type-checks the bodies of the
@racket[cond] clauses, using information from the predicate checks,
is called @tech{occurrence typing} and is described in detail in
@Secref["occurrence-typing"].
@section{Type Errors}

View File

@ -7,7 +7,7 @@
@(define the-eval (make-base-eval))
@(the-eval '(require typed/racket))
@title[#:tag "occurrence"]{Occurrence Typing}
@title[#:tag "occurrence-typing"]{Occurrence Typing}
@section{Basic Occurrence Typing}