From ee623160a4a2f75d8d7bbd01952de29a91ea3e84 Mon Sep 17 00:00:00 2001 From: ben Date: Mon, 4 Apr 2016 19:03:16 -0400 Subject: [PATCH] add @tech links in input-port? and output-port? --- pkgs/racket-doc/scribblings/reference/port-procs.scrbl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/racket-doc/scribblings/reference/port-procs.scrbl b/pkgs/racket-doc/scribblings/reference/port-procs.scrbl index d6730bb385..03b7a9607f 100644 --- a/pkgs/racket-doc/scribblings/reference/port-procs.scrbl +++ b/pkgs/racket-doc/scribblings/reference/port-procs.scrbl @@ -4,10 +4,10 @@ @title[#:tag "port-ops"]{Managing Ports} @defproc[(input-port? [v any/c]) boolean?]{ -Returns @racket[#t] if @racket[v] is an input port, @racket[#f] otherwise.} +Returns @racket[#t] if @racket[v] is an @tech{input port}, @racket[#f] otherwise.} @defproc[(output-port? [v any/c]) boolean?]{ -Returns @racket[#t] if @racket[v] is an output port, @racket[#f] otherwise.} +Returns @racket[#t] if @racket[v] is an @tech{output port}, @racket[#f] otherwise.} @defproc[(port? [v any/c]) boolean?]{ Returns @racket[#t] if either @racket[(input-port? v)] or