Skip to content

Commit 27637d0

Browse files
improve readability (#2129)
1 parent 4f257ea commit 27637d0

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

js/lilypond.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ processLilypondNotes = function(lilypond, logo, turtle) {
150150
queueSlur = true;
151151
break;
152152
case "end slur":
153-
logo.notationNotes[turtle] += ") ";
153+
logo.notationNotes[turtle] += ") ";
154154
break;
155155
case "begin harmonics":
156156
logo.notationNotes[turtle] += "\\harmonicsOn ";
@@ -639,7 +639,6 @@ processLilypondNotes = function(lilypond, logo, turtle) {
639639
logo.notationNotes[turtle] += "->";
640640
}
641641

642-
logo.notationNotes[turtle] += " ";
643642
}
644643

645644
if (obj[NOTATIONSTACCATO]) {
@@ -650,11 +649,10 @@ processLilypondNotes = function(lilypond, logo, turtle) {
650649
tupletDuration = 0;
651650
}
652651

653-
logo.notationNotes[turtle] += " ";
654652

655653
if (queueSlur) {
656654
queueSlur = false;
657-
logo.notationNotes[turtle] += "(";
655+
logo.notationNotes[turtle] += "( ";
658656
}
659657
}
660658
}

0 commit comments

Comments
 (0)