From da358025bd63e16c0e487a4815ad8a03d41a5343 Mon Sep 17 00:00:00 2001 From: Conor Finegan Date: Wed, 6 Sep 2017 04:36:48 -0400 Subject: [PATCH] Possible fix for get-implied-docs. (#57) * Added todo level for no description. * Added todo category for no description, added warnings in table for todos. * Fixed label xexps * now displays implied docs. * fixed formatting * removed comment * fixed issue with implied docs not being gathered correctly. * replaced 'for/fold' with 'append-map' in 'get-implied-docs'. * Possible fix for get-implied-docs. --- src/site.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/site.rkt b/src/site.rkt index 58dc701..3444f1b 100644 --- a/src/site.rkt +++ b/src/site.rkt @@ -553,7 +553,7 @@ "N/A")) (define (get-implied-docs pkg) - (define implied-names (package-implies pkg)) + (define implied-names (map string->symbol (package-implies pkg))) (append-map package-docs (package-batch-detail implied-names))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;