diff options
Diffstat (limited to 'scheme/plt/geiser/autodoc.ss')
-rw-r--r-- | scheme/plt/geiser/autodoc.ss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scheme/plt/geiser/autodoc.ss b/scheme/plt/geiser/autodoc.ss index 7e64c89..c317d5c 100644 --- a/scheme/plt/geiser/autodoc.ss +++ b/scheme/plt/geiser/autodoc.ss @@ -11,7 +11,7 @@ #lang scheme -(provide autodoc update-module-cache get-help) +(provide autodoc update-signature-cache get-help) (require geiser/utils geiser/modules geiser/locations scheme/help) @@ -176,7 +176,7 @@ ((list? arity) (map arity->signature arity)) (else (list (arity->signature arity))))) -(define (update-module-cache path . form) +(define (update-signature-cache path . form) (when (and (string? path) (or (null? form) (and (list? (car form)) |