]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/glissandi-can-skip-grobs.ly
Fix typos in the contributor's guide.
[lilypond.git] / Documentation / snippets / glissandi-can-skip-grobs.ly
index cdb04fb9c1a0b401b8c82669ee5383f3d0f90716..32caca079cb857828d4ccf2ab0a8e9a8597b5eb3 100644 (file)
@@ -4,16 +4,18 @@
 % and then run scripts/auxiliar/makelsr.py
 %
 % This file is in the public domain.
-%% Note: this file works from version 2.15.12
-\version "2.15.12"
+%% Note: this file works from version 2.17.6
+\version "2.17.6"
 
 \header {
-  lsrtags = "expressive marks, staff-notation, tweaks-and-overrides"
+  lsrtags = "expressive-marks, staff-notation, tweaks-and-overrides"
+  doctitle = "Glissandi can skip grobs"
   texidoc = "@code{NoteColumn} grobs can be skipped over by glissandi."
-}
+} % begin verbatim
+
 
 \relative c' {
   a2 \glissando
-  \once \override NoteColumn #'glissando-skip = ##t
+  \once \override NoteColumn.glissando-skip = ##t
   f''4 d,
 }