From 72dd5b125885c762f73b9fedc881f8e89e8d713f Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 8 Apr 2025 15:44:24 -0600 Subject: [PATCH] NO-OP tiny rewording of a comment --- libs/ardour/midi_model.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/ardour/midi_model.cc b/libs/ardour/midi_model.cc index bae9fea698..e99e0123c8 100644 --- a/libs/ardour/midi_model.cc +++ b/libs/ardour/midi_model.cc @@ -78,8 +78,8 @@ MidiModel::MidiModel (MidiModel const & other, MidiSource & s) MidiModel::NoteDiffCommand* MidiModel::new_note_diff_command (const string& name) { - /* return via the MidiSource to get a shared_ptr to - * ourselves. Probably faster than shared_from_this() + /* go via the MidiSource to get a shared_ptr to + * ourselves. Probably faster than shared_from_this() */ return new NoteDiffCommand (_midi_source.model(), name); }