diff options
| author | Arun Isaac | 2021-12-02 15:11:01 +0530 |
|---|---|---|
| committer | Arun Isaac | 2021-12-02 15:11:01 +0530 |
| commit | be97de713219788f118edc92abbbd66e7caa76be (patch) | |
| tree | 90f2e250cc4470feb9c4e80621eb1a620af0f667 /dump.scm | |
| parent | 1bfca2fc212239d01831bfad336bc44e4cc9056d (diff) | |
| download | gn-transform-databases-be97de713219788f118edc92abbbd66e7caa76be.tar.gz | |
Document delete-substrings.
* dump.scm (delete-substring): Add docstring.
Diffstat (limited to 'dump.scm')
| -rwxr-xr-x | dump.scm | 1 |
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 |
