Skip to content

Commit b6b7497

Browse files
committed
Fix small doc string typo
1 parent 3275a66 commit b6b7497

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PathTracking/move_to_pose/move_to_pose.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def move_to_pose(x_start, y_start, theta_start, x_goal, y_goal, theta_goal):
2929
beta is the angle between the robot's position and the goal position plus the goal angle
3030
3131
Kp_rho*rho and Kp_alpha*alpha drive the robot along a line towards the goal
32-
Kp*beta*beta rotates the line so that it is parallel to the goal angle
32+
Kp_beta*beta rotates the line so that it is parallel to the goal angle
3333
"""
3434
x = x_start
3535
y = y_start
@@ -126,4 +126,4 @@ def main():
126126

127127

128128
if __name__ == '__main__':
129-
main()
129+
main()

0 commit comments

Comments
 (0)