Skip to content

Commit 09d0843

Browse files
committed
Merge pull request #2117 from amulya349/master
Fixed mistake in comment
2 parents 1918966 + e692352 commit 09d0843

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libraries/Robot_Control/Melody.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ void RobotControl::playMelody(char* script){
4040
case 'C': playNote(202, time, modifier); break; // Play a C#
4141
case 'd': playNote(190, time, modifier); break; // Play a D
4242
case 'D': playNote(180, time, modifier); break; // Play a D#
43-
case 'e': playNote(170, time, modifier); break; // Play an F
43+
case 'e': playNote(170, time, modifier); break; // Play an E
4444
case 'f': playNote(160, time, modifier); break; // Play an F
4545
case 'F': playNote(151, time, modifier); break; // Play an F#
4646
case 'g': playNote(143, time, modifier); break; // Play a G
@@ -97,4 +97,4 @@ void RobotControl::playFile(char* filename){
9797

9898
void RobotControl::stopPlayFile(){
9999
melody.close();
100-
}
100+
}

0 commit comments

Comments
 (0)