X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scm%2Fdocument-backend.scm;h=2a23e49afa7ce40a1edb9dc39beca88aa46a8085;hb=bf7a2e96ce259693a62a24fa08655bfa423f22f7;hp=08cc17cd33ce4d64c12e366d9a8e48e1a19ec7f7;hpb=af770f3440264c18ce01525dce1aa76b86ace0d5;p=lilypond.git diff --git a/scm/document-backend.scm b/scm/document-backend.scm index 08cc17cd33..2a23e49afa 100644 --- a/scm/document-backend.scm +++ b/scm/document-backend.scm @@ -31,7 +31,7 @@ (if (pair? iprops) (string-append - "\n\n@unnumberedsubsubsec Internal properties: \n" + "\n\n@unnumberedsubsubsec Internal properties:\n" (description-list->texi internal-propdocs)) "")))) @@ -110,7 +110,7 @@ node." (define (all-grobs-doc) (make #:name "All layout objects" - #:desc "Description and defaults for all Grobs" + #:desc "Description and defaults for all graphical objects (grobs)." #:children (map (lambda (x) (grob-doc (cdr x))) all-grob-descriptions))) @@ -147,7 +147,7 @@ node." (define (all-interfaces-doc) (make #:name "Graphical Object Interfaces" - #:desc "Building blocks of graphical objects" + #:desc "Building blocks of graphical objects." #:children (map interface-doc interface-description-alist))) @@ -162,16 +162,16 @@ node." (define (backend-doc-node) (make #:name "Backend" - #:desc "Reference for the layout engine" + #:desc "Reference for the layout engine." #:children (list (all-grobs-doc) (all-interfaces-doc) (make #:name "User backend properties" - #:desc "All tunable properties in a big list" + #:desc "All tunable properties in a big list." #:text (backend-properties-doc-string all-user-grob-properties)) (make #:name "Internal backend properties" - #:desc "All internal layout properties in a big list" + #:desc "All internal layout properties in a big list." #:text (backend-properties-doc-string all-internal-grob-properties)))))