Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix ChoreoTrajectoryState constructor docs typo #485

Merged
merged 1 commit into from
Jun 12, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class ChoreoTrajectoryState implements Interpolatable<ChoreoTrajectorySta
* @param y The Y position of the state in meters.
* @param heading The heading of the state in radians, with 0 being in the +X direction.
* @param velocityX The velocity of the state in the X direction in m/s.
* @param velocityY The velocity of the state in the X direction in m/s.
* @param velocityY The velocity of the state in the Y direction in m/s.
* @param angularVelocity The angular velocity of the state in rad/s.
*/
public ChoreoTrajectoryState(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class ChoreoTrajectoryState {
* @param y The y position of the robot at this state
* @param heading The heading of the robot at this state
* @param xVel The x velocity of the robot at this state
* @param yVel The x velocity of the robot at this state
* @param yVel The y velocity of the robot at this state
* @param angularVel The angular velocity of the robot at this state
*/
ChoreoTrajectoryState(units::second_t t, units::meter_t x, units::meter_t y,
Expand Down
Loading