Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed typo #710

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ def control_stop_and_reverse(self):
self.info.output.throttle = 0.0

elif numpy.sign(self.info.current.speed) * numpy.sign(self.info.target.speed) == -1:
# requrest for change of driving direction
# request for change of driving direction
# first we have to come to full stop before changing driving
# direction
self.loginfo("VehicleControl: Request change of driving direction."
Expand Down Expand Up @@ -491,7 +491,7 @@ def update_drive_vehicle_control_command(self):
self.vehicle_info, self.vehicle_status, self.info.output.reverse)

# the engine lay off acceleration defines the size of the coasting area
# Interpretation: The engine already prforms braking on its own;
# Interpretation: The engine already performs braking on its own;
# therefore pushing the brake is not required for small decelerations
self.info.status.brake_upper_border = self.info.status.throttle_lower_border + \
phys.get_vehicle_lay_off_engine_acceleration(self.vehicle_info)
Expand Down