From: Graham Percival Date: Sat, 3 Oct 2009 23:15:48 +0000 (+0100) Subject: Doc: fix missing pitch for \relative, thanks David! X-Git-Tag: release/2.13.6-1~71 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=99bf982f689755b30aa34a53538a7e2a7fb638c2;p=lilypond.git Doc: fix missing pitch for \relative, thanks David! --- diff --git a/Documentation/usage/running.itely b/Documentation/usage/running.itely index a112a91248..03a822fd2b 100644 --- a/Documentation/usage/running.itely +++ b/Documentation/usage/running.itely @@ -574,14 +574,16 @@ the first, because the @code{\repeat} command generates two and @code{Voice} blocks. @lilypond[quote,verbatim] -\repeat unfold 2 \relative { c d e f } +\repeat unfold 2 { + \relative c' { c d e f } +} @end lilypond The correct way is to reverse the @code{\repeat} and @code{\relative} commands, like this: @lilypond[quote,verbatim] -\relative { +\relative c' { \repeat unfold 2 { c d e f } } @end lilypond