commit b62bfe3bdfa7ccb4c83983b383c861f921717fdd
parent ae0a0dfba0fd207477d119566f4a33a209869b88
Author: Leif Andersen <leif@leifandersen.net>
Date: Tue, 16 May 2017 14:38:17 -0400
render -> resolve
The documentation for the `resolve-get` family of functions
incorrectly refers to themselves as `render-get`. This commit
fixes that.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/scribble-doc/scribblings/scribble/core.scrbl b/scribble-doc/scribblings/scribble/core.scrbl
@@ -1479,7 +1479,7 @@ documentation.
@defproc[(resolve-get/ext? [p (or/c part? #f)] [ri resolve-info?] [key info-key?])
(values any/c boolean?)]{
-Like @racket[render-get], but returns a second value to indicate
+Like @racket[resolve-get], but returns a second value to indicate
whether the resulting information originated from an external source
(i.e., a different document).}
@@ -1487,7 +1487,7 @@ whether the resulting information originated from an external source
@defproc[(resolve-get/ext-id [p (or/c part? #f)] [ri resolve-info?] [key info-key?])
(values any/c (or/c boolean? string?))]{
-Like @racket[render-get/ext?], but the second result can be a string
+Like @racket[resolve-get/ext?], but the second result can be a string
to indicate the source document's identification as established via
@racket[load-xref] and a @racket[#:doc-id] argument.