From 7379cec4eff417dc080c6ea029af1df86368a93b Mon Sep 17 00:00:00 2001 From: Franke Burgarino Date: Thu, 8 Jan 2026 11:04:16 -0600 Subject: [PATCH] Fix typos --- libs/surfaces/faderport8/faderport8.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/surfaces/faderport8/faderport8.cc b/libs/surfaces/faderport8/faderport8.cc index ea46434608..c0be24e128 100644 --- a/libs/surfaces/faderport8/faderport8.cc +++ b/libs/surfaces/faderport8/faderport8.cc @@ -108,7 +108,7 @@ FaderPort8::probe (std::string& i, std::string& o) AudioEngine::instance()->get_ports ("", DataType::MIDI, PortFlags (IsInput|IsTerminal), midi_outputs); if (midi_outputs.size () == 0) - DEBUG_TRACE (DEBUG::FaderPort8, "prope got no output midi ports at all - perhaps an audio backend problem?\n"); + DEBUG_TRACE (DEBUG::FaderPort8, "probe got no output midi ports at all - perhaps an audio backend problem?\n"); // midi_inputs will never be empty - there is always at least x-virtual-keyboard const string needle = @@ -130,13 +130,13 @@ FaderPort8::probe (std::string& i, std::string& o) auto po = std::find_if (midi_outputs.begin (), midi_outputs.end (), has_fp8); if (pi == midi_inputs.end () || po == midi_outputs.end ()) { - DEBUG_TRACE (DEBUG::FaderPort8, string_compose ("prope did not find the '%1' midi ports\n", needle)); + DEBUG_TRACE (DEBUG::FaderPort8, string_compose ("probe did not find the '%1' midi ports\n", needle)); return false; } i = *pi; o = *po; - DEBUG_TRACE (DEBUG::FaderPort8, string_compose ("prope found midi ports '%1' and '%2'\n", i, o)); + DEBUG_TRACE (DEBUG::FaderPort8, string_compose ("probe found midi ports '%1' and '%2'\n", i, o)); return true; }