]> git.donarmstrong.com Git - lilypond.git/commitdiff
Docs: IR: correct (de)crescendo syntax.
authorPatrick McCarty <pnorcks@gmail.com>
Tue, 14 Jul 2009 23:57:31 +0000 (16:57 -0700)
committerPatrick McCarty <pnorcks@gmail.com>
Tue, 14 Jul 2009 23:57:31 +0000 (16:57 -0700)
scm/define-music-types.scm

index 38ea219ab0a7c21217236966faad17dd603b6229..f54342781c664918a0fed287b90e043248d7be08 100644 (file)
@@ -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))
        ))