Skip to content
Merged
Show file tree
Hide file tree
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
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
Loading