From 0e545a3a1c054dea8a06261739363f39f0be020d Mon Sep 17 00:00:00 2001 From: Avril Date: Mon, 7 Jun 2021 15:24:10 +0100 Subject: [PATCH] improved split-string --- flan-utils.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flan-utils.lisp b/flan-utils.lisp index a275290..f3feb28 100644 --- a/flan-utils.lisp +++ b/flan-utils.lisp @@ -587,7 +587,7 @@ ,(cons 'cond exprs)))) (defun split-string (string &optional sep) - "Split a string by this seperator (or `:whitespace', if not provided" + "Split a string by this seperator (or whitespace, if not provided)" (let* ((sep (or (switch sep (#\Newline "[\\n\\f\\r]") (#\Space " ")