Skip to content

Commit bccf5e3

Browse files
committed
FIX even more typos
1 parent 4330328 commit bccf5e3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/magnetic_sensor_examples/velocity_control/velocity_control.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ void serialEvent() {
103103
// end of input
104104
if (inChar == '\n') {
105105
target_velocity = inputString.toFloat();
106-
Serial.print("Tagret velocity: ");
106+
Serial.print("Target velocity: ");
107107
Serial.println(target_velocity);
108108
inputString = "";
109109
}

examples/magnetic_sensor_examples/voltage_control/voltage_control.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ void serialEvent() {
8989
// end of input
9090
if (inChar == '\n') {
9191
target_voltage = inputString.toFloat();
92-
Serial.print("Tagret voltage: ");
92+
Serial.print("Target voltage: ");
9393
Serial.println(target_voltage);
9494
inputString = "";
9595
}

0 commit comments

Comments
 (0)