]> git.donarmstrong.com Git - lilypond.git/blobdiff - scm/chord-entry.scm
[scm] Improve formatting of `define-public' functions.
[lilypond.git] / scm / chord-entry.scm
index c1238b78da80f771fd78a38041326c5948f92c2f..06cc077ce4a1395e206f664c3d3406ea48d9f94e 100644 (file)
 ;;;; along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
 
 (define-public (construct-chord-elements root duration modifications)
-  " Build a chord on root using modifiers in MODIFICATIONS.  NoteEvents
-have duration DURATION.
+  "Build a chord on root using modifiers in @var{modifications}.
+@code{NoteEvents} have duration @var{duration}.
 
-Notes: natural 11 is left from chord if not explicitly specified.
+Notes: Natural 11 is left from chord if not explicitly specified.
 
-Entry point for the parser.
-"
+Entry point for the parser."
   (let* ((flat-mods (flatten-list modifications))
         (base-chord (stack-thirds (ly:make-pitch 0 4 0) the-canonical-chord))
         (complete-chord '())