From b9261dd8a9197aaeca55aeebf1c49a98099f40f9 Mon Sep 17 00:00:00 2001 From: jules Date: Tue, 15 Sep 2015 08:23:29 +0100 Subject: [PATCH] Fixed a typo in a comment. --- modules/juce_audio_basics/midi/juce_MidiMessage.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/juce_audio_basics/midi/juce_MidiMessage.h b/modules/juce_audio_basics/midi/juce_MidiMessage.h index 1ab7a4c9ae..61e084b73b 100644 --- a/modules/juce_audio_basics/midi/juce_MidiMessage.h +++ b/modules/juce_audio_basics/midi/juce_MidiMessage.h @@ -238,7 +238,7 @@ public: @param channel the midi channel, in the range 1 to 16 @param noteNumber the key number, 0 to 127 - @param velocity in the range 0 to 127 + @param velocity in the range 0 to 1.0 @see isNoteOff */ static MidiMessage noteOff (int channel, int noteNumber, float velocity) noexcept; @@ -247,7 +247,7 @@ public: @param channel the midi channel, in the range 1 to 16 @param noteNumber the key number, 0 to 127 - @param velocity in the range 0 to 1 + @param velocity in the range 0 to 127 @see isNoteOff */ static MidiMessage noteOff (int channel, int noteNumber, uint8 velocity) noexcept;