Remove redundant comments.

This commit is contained in:
Dominik Pantůček 2023-07-06 19:47:45 +02:00
parent 722ac4830c
commit 3ee2532597
2 changed files with 0 additions and 4 deletions

View file

@ -47,7 +47,6 @@
testing
util-utf8)
;; Extracts first token and the rest as separate string
(define/doc (string-first+rest str)
("* ```str``` - a string to split
@ -63,7 +62,6 @@ remainder with leading whitespace removed.")
(cons key-str val))
(cons str ""))))
;; Encodes given UTF-8 string as quoted-printable
(define/doc (string->qp str)
("* ```str``` - arbitrary string
@ -93,7 +91,6 @@ quoted-printable sequences.")
"")))
res)))))
;; Returns upper-case version of the string
(define/doc (string-upcase str)
("* ```str``` - arbitrary string

View file

@ -39,7 +39,6 @@
(chicken string)
(chicken random))
;; Syntactic wrapper to allow easy tag creation
(define-syntax/doc make-tag
("* ```tag``` - unquoted symbol to base the tag on