diff options
author | Arun Isaac | 2022-03-16 16:22:10 +0530 |
---|---|---|
committer | Arun Isaac | 2022-03-16 16:22:10 +0530 |
commit | 4b5d60c64d8968ee5197956c2f7dee70bd48e79c (patch) | |
tree | aa8ee8ecac34f131585ffc629a9ffb22ee1e2ae8 | |
parent | 76083ddd912b754772cfebf05374243cfc8a7717 (diff) | |
download | tissue-4b5d60c64d8968ee5197956c2f7dee70bd48e79c.tar.gz tissue-4b5d60c64d8968ee5197956c2f7dee70bd48e79c.tar.lz tissue-4b5d60c64d8968ee5197956c2f7dee70bd48e79c.zip |
tissue: Fix "#\s pace" typo.
It should be "#\space", not "#\s pace".
* tissue/web.scm (issue-list-item-markup-writer-action): Fix "#\s
pace" typo.
-rw-r--r-- | tissue/web.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tissue/web.scm b/tissue/web.scm index bd6e0b0..0a07a34 100644 --- a/tissue/web.scm +++ b/tissue/web.scm @@ -117,7 +117,7 @@ NEW-EXTENSION." #\/))))) ,(markup-option markup #:title)) ,@(map (lambda (tag) - (let ((words (string-split tag (char-set #\- #\s pace)))) + (let ((words (string-split tag (char-set #\- #\space)))) `(a (@ (href ,(string-append (%tags-path) "/" (uri-encode (sanitize-string tag)) ".html")) |