diff options
author | James Lowe <pkx166h@gmail.com> | 2016-03-13 11:34:32 +0000 |
---|---|---|
committer | James Lowe <pkx166h@gmail.com> | 2016-03-21 09:43:10 +0000 |
commit | dc75bffda220d1321689df595a976ab275debbba (patch) | |
tree | 9882e2a64f8e3f6874290c7a9939cc2bcd1a1823 | |
parent | 14bd7e660f59c1ce1373424a877a70ec576a93d3 (diff) |
Doc: Extending - 1.3.4 - clarify description for 'addAccent' function example
Issue 4796
Clarify description for
the 'addAccent' function
example in the Scheme
Tutorial.
-rw-r--r-- | Documentation/extending/scheme-tutorial.itely | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/extending/scheme-tutorial.itely b/Documentation/extending/scheme-tutorial.itely index f8f23a5fa4..40028ffb66 100644 --- a/Documentation/extending/scheme-tutorial.itely +++ b/Documentation/extending/scheme-tutorial.itely @@ -1504,9 +1504,9 @@ Finally, once we have added the accent articulation to its @code{articulations} property, we can return @code{note-event}, hence the last line of the function. -Now we transform the @code{add-accent} function into a music -function (a matter of some syntactic sugar and a declaration of the type -of its sole @q{real} argument). +Now we transform the @code{add-accent} function into a music function (a +matter of some syntactic sugar and a declaration of the type of its +argument). @example addAccent = #(define-music-function (note-event) @@ -1520,7 +1520,7 @@ addAccent = #(define-music-function (note-event) note-event) @end example -We may verify that this music function works correctly: +We then verify that this music function works correctly: @example \displayMusic \addAccent c4 |