From: Patrick McCarty Date: Tue, 14 Jul 2009 23:57:31 +0000 (-0700) Subject: Docs: IR: correct (de)crescendo syntax. X-Git-Tag: release/2.13.4-1~339 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=9e1207132b28160784b7bbf4abec6e361f985002;p=lilypond.git Docs: IR: correct (de)crescendo syntax. --- diff --git a/scm/define-music-types.scm b/scm/define-music-types.scm index 38ea219ab0..f54342781c 100644 --- a/scm/define-music-types.scm +++ b/scm/define-music-types.scm @@ -147,16 +147,21 @@ specific context.") (CrescendoEvent . ((description . "Begin or end a crescendo. -Syntax: @var{note}@code{\\cr} @dots{} @var{note}@code{\\rc} +Syntax: @var{note}@code{\\<} @dots{} @var{note}@code{\\!} -You can also use @code{\\<}, @code{\\!}, @code{\\cresc}, and -@code{\\endcresc}. See the Notation Reference for details.") +An alternative syntax is @var{note}@code{\\cr} @dots{} +@var{note}@code{\\endcr}.") (types . (general-music span-event span-dynamic-event crescendo-event event)) )) (DecrescendoEvent - . ((description . "See @ref{CrescendoEvent}.") + . ((description . "Begin or end a decrescendo. + +Syntax: @var{note}@code{\\>} @dots{} @var{note}@code{\\!} + +An alternative syntax is @var{note}@code{\\decr} @dots{} +@var{note}@code{\\enddecr}.") (types . (general-music span-event span-dynamic-event decrescendo-event event)) ))