From 58474673b414b6244dbfb2d400474564be740fcf Mon Sep 17 00:00:00 2001 From: Jacek Roszkowski Date: Fri, 22 Jun 2018 20:44:12 +0200 Subject: [PATCH] Corrected typo: Lenght - Length --- src/MIDI.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/MIDI.cpp b/src/MIDI.cpp index e14a98f..3feb202 100644 --- a/src/MIDI.cpp +++ b/src/MIDI.cpp @@ -37,8 +37,8 @@ BEGIN_MIDI_NAMESPACE data you want to send. \param inData The data to encode. \param outSysEx The output buffer where to store the encoded message. - \param inLength The lenght of the input buffer. - \return The lenght of the encoded output buffer. + \param inLength The length of the input buffer. + \return The length of the encoded output buffer. @see decodeSysEx Code inspired from Ruin & Wesen's SysEx encoder/decoder - http://ruinwesen.com */ @@ -74,8 +74,8 @@ unsigned encodeSysEx(const byte* inData, byte* outSysEx, unsigned inLength) your received message. \param inSysEx The SysEx data received from MIDI in. \param outData The output buffer where to store the decrypted message. - \param inLength The lenght of the input buffer. - \return The lenght of the output buffer. + \param inLength The length of the input buffer. + \return The length of the output buffer. @see encodeSysEx @see getSysExArrayLength Code inspired from Ruin & Wesen's SysEx encoder/decoder - http://ruinwesen.com */