source typo fixes pt3 (only on py3 merged code)

This commit is contained in:
Kunda
2017-02-28 14:32:33 -05:00
parent 6c720ced84
commit a78e8ffd95
32 changed files with 40 additions and 40 deletions

View File

@@ -189,7 +189,7 @@ void Trajectory::generateTrajectory(void)
}
else if (Cont && pcRoundComp) {
pcRoundComp->Add(Next);
// end a continous block
// end a continuous block
}
else if (Cont==false && pcRoundComp) {
// add the last one
@@ -220,7 +220,7 @@ void Trajectory::generateTrajectory(void)
break;
}
// add the segment if no continous block is running
// add the segment if no continuous block is running
if (!pcRoundComp)
pcTrajectory->Add(pcTrak);
}