]> git.donarmstrong.com Git - lilypond.git/commitdiff
Fix quote marks in doc string of string->string-list.
authorDavid Kastrup <dak@gnu.org>
Mon, 10 Jun 2013 11:29:11 +0000 (13:29 +0200)
committerDavid Kastrup <dak@gnu.org>
Mon, 10 Jun 2013 13:56:19 +0000 (15:56 +0200)
scm/bar-line.scm

index 370f0d476c3dfffb4c4f50ff6db05864773265ef..2521e47027065039670c485fda539be834a4cd82 100644 (file)
@@ -135,8 +135,8 @@ mandatory to the procedures stored in @code{bar-glyph-print-procedures}."
 
 (define (string->string-list str)
   "Convert a string into a list of strings with length 1.
-@code{"aBc"} will be converted to @code{("a" "B" "c")}.
-An empty string will be converted to a list containing @code{""}."
+@code{\"aBc\"} will be converted to @code{(\"a\" \"B\" \"c\")}.
+An empty string will be converted to a list containing @code{\"\"}."
   (if (and (string? str)
            (not (zero? (string-length str))))
       (map (lambda (s)