Skip to content

Commit

Permalink
Fix typo in IdealStartingState Javadoc (#1008)
Browse files Browse the repository at this point in the history
  • Loading branch information
codydg authored Jan 16, 2025
1 parent c7dfca2 commit c2d8a7d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pathplannerlib-python/pathplannerlib/path.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def __eq__(self, other):
@dataclass(frozen=True)
class IdealStartingState:
"""
Describes the ideal starting state of the robot when finishing a path
Describes the ideal starting state of the robot when starting a path
Args:
velocity (float): The ideal starting velocity (M/S)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
import org.json.simple.JSONObject;

/**
* Describes the ideal starting state of the robot when finishing a path
* Describes the ideal starting state of the robot when starting a path
*
* @param velocityMPS The ideal starting velocity (M/S)
* @param rotation The ideal starting rotation
*/
public record IdealStartingState(double velocityMPS, Rotation2d rotation) {
/**
* Describes the ideal starting state of the robot when finishing a path
* Describes the ideal starting state of the robot when starting a path
*
* @param velocity The ideal starting velocity
* @param rotation The ideal starting rotation
Expand Down

0 comments on commit c2d8a7d

Please sign in to comment.