]> git.donarmstrong.com Git - lilypond.git/blobdiff - scm/lily-sort.scm
[scm]: Use two spaces after full stop in doc strings.
[lilypond.git] / scm / lily-sort.scm
index 33526d7f35f3f0d48a54cd68277ceacf762f13ea..ac239a7f50d60ae42d0dd3d18ded7051a35c38f0 100644 (file)
 
 (define (ly:alist<? a b)
   "Return #t if the first key of alist A is less than the first key of
-  alist B, using case-sensitive LilyPond sort order. Keys are assumed to
+  alist B, using case-sensitive LilyPond sort order.  Keys are assumed to
   be symbols."
   (ly:string<? (symbol->string (car a))
                (symbol->string (car b))))
 
 (define (ly:alist-ci<? a b)
   "Return #t if the first key of alist A is less than the first key of
-  alist B, using case-insensitive LilyPond sort order. Keys are assumed
+  alist B, using case-insensitive LilyPond sort order.  Keys are assumed
   to be symbols."
   (ly:string-ci<? (symbol->string (car a))
                   (symbol->string (car b))))