diff --git a/pathplannerlib-python/pathplannerlib/path.py b/pathplannerlib-python/pathplannerlib/path.py index 4adbe48b7..15755529d 100644 --- a/pathplannerlib-python/pathplannerlib/path.py +++ b/pathplannerlib-python/pathplannerlib/path.py @@ -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) diff --git a/pathplannerlib/src/main/java/com/pathplanner/lib/path/IdealStartingState.java b/pathplannerlib/src/main/java/com/pathplanner/lib/path/IdealStartingState.java index e1c318efa..2f3b76b83 100644 --- a/pathplannerlib/src/main/java/com/pathplanner/lib/path/IdealStartingState.java +++ b/pathplannerlib/src/main/java/com/pathplanner/lib/path/IdealStartingState.java @@ -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