Skip to content

Commit 3502d3c

Browse files
committed
Fix typo.
1 parent fa33b13 commit 3502d3c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/scenic/domains/driving/behaviors/walks.scenic

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ behavior _WalkPathHelper(path, targetSpeed):
146146
# Set appropriate heading and velocity, calculating actual speed we should aim
147147
# for, so we don't overshoot if we cut a corner or are at the end of the path.
148148
actual_speed = min(targetSpeed, (distance from self to target_pt)/simulation().timestep)
149-
print(f"EXPECTED POINT: {target_point}")
149+
print(f"EXPECTED POINT: {target_pt}")
150150
heading = angle from self to target_pt
151151
take SetWalkingDirectionAction(heading), SetWalkingSpeedAction(actual_speed)
152152

0 commit comments

Comments
 (0)