diff --git a/src/PitchName.cpp b/src/PitchName.cpp index b647a1a52..e8c954196 100644 --- a/src/PitchName.cpp +++ b/src/PitchName.cpp @@ -32,7 +32,7 @@ double FreqToMIDInoteNumber(double freq) { // Make the calculation relative to A440 (A4), note number 69. double dCalc = 69.0 + (12.0 * (log(freq / 440.0) / log(2.0))); - //vvv For freq values in the range (0.0, ~8.2], that calculation + //vvv For freq values in the range (0.0, ~8.2), that calculation // produces negative dCalc, and as close in frequency as they are, // their modulo 12 results are different. // Also, not clear that any of those frequencies is a "pitch",