docs: fix spelling errors

Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
This commit is contained in:
Fathi Boudra
2016-04-07 12:22:52 +03:00
committed by Mihai Tudor Panu
parent c7b5204fe4
commit dc8be495a9
29 changed files with 37 additions and 37 deletions

View File

@ -397,7 +397,7 @@ SmartDrive::GetMotorStatus(int motor_id) {
if (motor_id == SmartDrive_Motor_ID_2)
status = readByte(SmartDrive_STATUS_M1);
if (motor_id == SmartDrive_Motor_ID_BOTH) {
std::cout << "Please specifiy which motor's status you want to fetch !" << std::endl;
std::cout << "Please specify which motor's status you want to fetch !" << std::endl;
}
return status;
}
@ -425,6 +425,6 @@ SmartDrive::PrintMotorStatus(int motor_id) {
std::cout << "Motor " << motor_id+1 << " is " << ((is_stalled == 0) ? "NOT" : "") << " stalled" << std::endl;
} else {
std::cout << "Please specifiy which motor's status you want to fetch !" << std::endl;
std::cout << "Please specify which motor's status you want to fetch !" << std::endl;
}
}