aboutsummaryrefslogtreecommitdiff
path: root/dump.scm
diff options
context:
space:
mode:
authorArun Isaac2021-12-02 15:11:01 +0530
committerArun Isaac2021-12-02 15:11:01 +0530
commitbe97de713219788f118edc92abbbd66e7caa76be (patch)
tree90f2e250cc4470feb9c4e80621eb1a620af0f667 /dump.scm
parent1bfca2fc212239d01831bfad336bc44e4cc9056d (diff)
downloadgn-transform-databases-be97de713219788f118edc92abbbd66e7caa76be.tar.gz
Document delete-substrings.
* dump.scm (delete-substring): Add docstring.
Diffstat (limited to 'dump.scm')
-rwxr-xr-xdump.scm1
1 files changed, 1 insertions, 0 deletions
diff --git a/dump.scm b/dump.scm
index 587cdbf..cab926c 100755
--- a/dump.scm
+++ b/dump.scm
@@ -76,6 +76,7 @@
;;; Dump tables
(define (delete-substrings str . substrings)
+ "Delete SUBSTRINGS, a list of strings, from STR."
(fold (lambda (substring result)
(string-replace-substring result substring ""))
str