Browse Source

Fixed cosmetic typo in user display message

Corrected "it's" to "its". Just one of those grammar things that drives me crazy ;-)
master
zlite 12 years ago
parent
commit
4800c57fb4
  1. 10
      libraries/AP_InertialSensor/AP_InertialSensor.cpp

10
libraries/AP_InertialSensor/AP_InertialSensor.cpp

@ -337,20 +337,20 @@ bool AP_InertialSensor::calibrate_accel(void (*flash_leds_cb)(bool on),
msg = PSTR("level"); msg = PSTR("level");
break; break;
case 1: case 1:
msg = PSTR("on it's left side"); msg = PSTR("on its LEFT side");
break; break;
case 2: case 2:
msg = PSTR("on it's right side"); msg = PSTR("on its RIGHT side");
break; break;
case 3: case 3:
msg = PSTR("nose down"); msg = PSTR("nose DOWN");
break; break;
case 4: case 4:
msg = PSTR("nose up"); msg = PSTR("nose UP");
break; break;
default: // default added to avoid compiler warning default: // default added to avoid compiler warning
case 5: case 5:
msg = PSTR("on it's back"); msg = PSTR("on its BACK");
break; break;
} }
interact->printf_P( interact->printf_P(

Loading…
Cancel
Save