]> git.donarmstrong.com Git - lilypond.git/commitdiff
Doc: NR VerticalSpacing: repair example
authorKeith <k-ohara5a5a@oco.net>
Sun, 16 Jan 2011 01:06:51 +0000 (17:06 -0800)
committerTrevor Daniels <t.daniels@treda.co.uk>
Sun, 16 Jan 2011 09:26:19 +0000 (09:26 +0000)
Documentation/notation/spacing.itely

index cad2fa3bd41b96f25c95c364bfeb3601db0c36d4..8eebae6d3ddbf0ccc569c5c4acf244cf4dd84103 100644 (file)
@@ -1879,11 +1879,12 @@ individually, and the second completely re-defines the property:
 
 @example
 \new Staff \with @{
-  \override VerticalAxisGroup #'staff-staff-spacing #'basic-distance = #10
+  \override VerticalAxisGroup #'default-staff-staff-spacing
+       #'basic-distance = #10
 @} @{ @dots{} @}
 
 \new Staff \with @{
-  \override VerticalAxisGroup #'staff-staff-spacing =
+  \override VerticalAxisGroup #'default-staff-staff-spacing =
     #'((basic-distance . 10)
        (minimum-distance . 9)
        (padding . 1)
@@ -1898,7 +1899,8 @@ To change any spacing settings globally, put them in the
 \layout @{
   \context @{
     \Staff
-    \override VerticalAxisGroup #'staff-staff-spacing #'basic-distance = #10
+    \override VerticalAxisGroup #'default-staff-staff-spacing
+         #'basic-distance = #10
   @}
 @}
 @end example