]> git.donarmstrong.com Git - lilypond.git/commitdiff
Minor change to correct snippet
authorPhil Holmes <mail@philholmes.net>
Sun, 27 Dec 2015 16:13:15 +0000 (16:13 +0000)
committerPhil Holmes <mail@philholmes.net>
Sun, 27 Dec 2015 16:13:59 +0000 (16:13 +0000)
Documentation/snippets/new/printing-bar-numbers-with-changing-regular-intervals.ly
Documentation/snippets/printing-bar-numbers-with-changing-regular-intervals.ly

index e15ba70f11bd3a94686db6368587886153a4807e..5d2fbf56055ee3170bc30c73540f02aebe0323ba 100644 (file)
@@ -9,13 +9,13 @@ The bar number interval can be changed by changing the context function
 
 "
   doctitle = "Printing bar numbers with changing, regular intervals"
-} % begin verbatim
+}
 
 
 \relative c' {
   \override Score.BarNumber.break-visibility = #end-of-line-invisible
   \context Score \applyContext #(set-bar-number-visibility 4)
-  \repeat unfold 10 c''1
+  \repeat unfold 10 c'1
   \context Score \applyContext #(set-bar-number-visibility 2)
-  \repeat unfold 10 c''
+  \repeat unfold 10 c
 }
index 62c65c418c1d74b630bbad80e787f28409d565af..106db138a8eaf0cbaa887511178bf0ba54636833 100644 (file)
@@ -19,10 +19,11 @@ The bar number interval can be changed by changing the context function
 } % begin verbatim
 
 
+
 \relative c' {
   \override Score.BarNumber.break-visibility = #end-of-line-invisible
   \context Score \applyContext #(set-bar-number-visibility 4)
-  \repeat unfold 10 c''1
+  \repeat unfold 10 c'1
   \context Score \applyContext #(set-bar-number-visibility 2)
-  \repeat unfold 10 c''
-} % begin verbatim
+  \repeat unfold 10 c
+}