Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Use string-concatenate
  • Loading branch information
lassik committed Nov 8, 2022
commit e312fef0035aa2f83440b9ad92274bf3168f357a
2 changes: 1 addition & 1 deletion srfi-tools/private/string.sld
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ by \" and\" if there are only two elements and \", and\" otherwise."
`string-list', separating them with \", \" except for the last pair,
which should be separated by \" and\" if there are only two elements
and \", and\" otherwise."
(apply string-append (english-list string-list)))
(string-concatenate (english-list string-list)))

;; "Foo bar/baz!" -> "foo-bar-baz"
(define (string->slug str)
Expand Down