From 03096f1e661473f068a40ccc05c92ec1fcf47b6d Mon Sep 17 00:00:00 2001 From: Neil Puttock Date: Thu, 2 Dec 2010 21:49:04 +0000 Subject: [PATCH] Fix thinko in tie-engraver.cc. --- lily/tie-engraver.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lily/tie-engraver.cc b/lily/tie-engraver.cc index d636db8253..919a0ae806 100644 --- a/lily/tie-engraver.cc +++ b/lily/tie-engraver.cc @@ -34,7 +34,7 @@ #include "translator.icc" /** - Manufacture ties. Acknowledge noteheads, and put them into a + Manufacture ties. Acknowledge note heads, and put them into a priority queue. If we have a TieEvent, connect the notes that finish just at this time, and note that start at this time. @@ -172,12 +172,12 @@ Tie_engraver::acknowledge_note_head (Grob_info i) // Prevent all other tied notes ending at the same moment (assume // implicitly the notes have also started at the same moment!) - // from triggering an "unterminated tie" warning. Neede e.g. for + // from triggering an "unterminated tie" warning. Needed e.g. for // ~ g for (vsize j = heads_to_tie_.size (); j--;) { if (heads_to_tie_[j].end_moment_ == end) - heads_to_tie_[i].tie_from_chord_created = true; + heads_to_tie_[j].tie_from_chord_created = true; } } } @@ -241,7 +241,7 @@ Tie_engraver::stop_translation_timestep () if (!left_ev) { - // may happen for ambituses + // may happen for ambitus continue; } -- 2.39.5