Skip to content

Commit 5847467

Browse files
authored
Corrected typo: Lenght - Length
1 parent 2e8be81 commit 5847467

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/MIDI.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ BEGIN_MIDI_NAMESPACE
3737
data you want to send.
3838
\param inData The data to encode.
3939
\param outSysEx The output buffer where to store the encoded message.
40-
\param inLength The lenght of the input buffer.
41-
\return The lenght of the encoded output buffer.
40+
\param inLength The length of the input buffer.
41+
\return The length of the encoded output buffer.
4242
@see decodeSysEx
4343
Code inspired from Ruin & Wesen's SysEx encoder/decoder - http://ruinwesen.com
4444
*/
@@ -74,8 +74,8 @@ unsigned encodeSysEx(const byte* inData, byte* outSysEx, unsigned inLength)
7474
your received message.
7575
\param inSysEx The SysEx data received from MIDI in.
7676
\param outData The output buffer where to store the decrypted message.
77-
\param inLength The lenght of the input buffer.
78-
\return The lenght of the output buffer.
77+
\param inLength The length of the input buffer.
78+
\return The length of the output buffer.
7979
@see encodeSysEx @see getSysExArrayLength
8080
Code inspired from Ruin & Wesen's SysEx encoder/decoder - http://ruinwesen.com
8181
*/

0 commit comments

Comments
 (0)