Updated docs to cause resolve-module-path-index and module-path-index-resolve to link to each other.

This commit is contained in:
Leif Andersen 2016-05-19 12:23:50 -04:00
parent d0d85b2f31
commit 8111e4ec99
2 changed files with 8 additions and 3 deletions

View File

@ -1,6 +1,7 @@
#lang scribble/doc
@(require "mz.rkt"
(for-label compiler/embed))
(for-label compiler/embed
syntax/modresolve))
@title{Module Names and Loading}
@ -284,7 +285,9 @@ name resolver} (see @racket[current-module-name-resolver]). Depending
on the kind of module paths encapsulated by @racket[mpi], the computed
resolved name can depend on the value of
@racket[current-load-relative-directory] or
@racket[current-directory].}
@racket[current-directory].
See @racket[resolve-module-path-index].}
@defproc[(module-path-index-split [mpi module-path-index?])

View File

@ -25,4 +25,6 @@ refman]{module path index}; in this case, the @racket[rel-to-path-v]
base is used where the module path index contains the ``self'' index.
If @racket[module-path-index] depends on the ``self'' module path
index, then an exception is raised unless @racket[rel-to-path-v] is a
path string.}
path string.
See @racket[module-path-index-resolve].}