Fix typo in file name.
[lilypond/mpolesky.git] / Documentation / snippets / dot-count-override.ly
blob7d4e7dd5387f4649f465aa62e581caea551bade7
1 % Do not edit this file; it is automatically
2 % generated from Documentation/snippets/new
3 % This file is in the public domain.
4 %% Note: this file works from version 2.13.26
5 \version "2.13.26"
6 \header {
7 lsrtags = "rhythms,expressive-marks"
8 texidoc = "This code demonstrates how to change the number of
9 augmentation dots on a single note."
10 doctitle = "Changing the number of augmentation dots per note"
11 } % begin verbatim
14 \relative c' {
15 c4.. a16 r2 |
16 \override Dots #'dot-count = #4
17 c4.. a16 r2 |
18 \override Dots #'dot-count = #0
19 c4.. a16 r2 |
20 \revert Dots #'dot-count
21 c4.. a16 r2 |