1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-01 22:41:32 +00:00

Fix typos in comments

This commit is contained in:
Ryan Carsten Schmidt 2023-12-04 10:39:03 -06:00 committed by GitHub
parent 9b23984d35
commit 896632b9b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -98,9 +98,9 @@ Track::Event PCMTrack::get_next_event() {
// effect is an index hole
Time total_length = event.length;
// continue until somewhere no returning an index hole
// continue until somewhere not returning an index hole
while(event.type == Track::Event::IndexHole) {
// advance to the [start of] the next segment
// advance to [the start of] the next segment
segment_pointer_ = (segment_pointer_ + 1) % segment_event_sources_.size();
segment_event_sources_[segment_pointer_].reset();