From 6c49aee3a62031a113c0210eb9e1e7824e67564e Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Thu, 14 Feb 2013 16:59:48 -0700 Subject: [PATCH] doc: add some links --- collects/scribblings/reference/port-line-counting.scrbl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/collects/scribblings/reference/port-line-counting.scrbl b/collects/scribblings/reference/port-line-counting.scrbl index bd1682234d..c67725f5d8 100644 --- a/collects/scribblings/reference/port-line-counting.scrbl +++ b/collects/scribblings/reference/port-line-counting.scrbl @@ -47,7 +47,8 @@ invoked only when tracking is specifically enabled with @defproc[(port-count-lines! [port port?]) void?]{ -Turns on line and column counting for a port. Counting can be turned +Turns on @tech{line location} and @tech{column location} counting +for a port. Counting can be turned on at any time, though generally it is turned on before any data is read from or written to a port. At the point that line counting is turned on, @racket[port-next-location] typically starts reporting as @@ -63,7 +64,8 @@ be disabled for a port after it is enabled.} @defproc[(port-counts-lines? [port port?]) boolean?]{ -Returns @racket[#t] if line and column counting has been enabled for +Returns @racket[#t] if @tech{line location} and @tech{column location} +counting has been enabled for @racket[port], @racket[#f] otherwise.}