Fix Typos (NFC) (#5137)

This commit is contained in:
sciencewhiz
2023-02-26 15:06:37 -08:00
committed by GitHub
parent ce3686b80d
commit 4af84a1c12
71 changed files with 95 additions and 95 deletions

View File

@@ -131,7 +131,7 @@
},
{
"name": "TrapezoidProfileSubsystem",
"description": "A subystem that executes a trapezoidal motion profile.",
"description": "A subsystem that executes a trapezoidal motion profile.",
"tags": [
"trapezoidprofilesubsystem"
],

View File

@@ -124,7 +124,7 @@ public class Robot extends TimedRobot {
// determine pose
Transform3d pose = estimator.estimate(detection);
// put pose into dashbaord
// put pose into dashboard
Rotation3d rot = pose.getRotation();
tagsTable
.getEntry("pose_" + detection.getId())

View File

@@ -103,7 +103,7 @@ public class RobotContainer {
DriveConstants.kFeedforward,
DriveConstants.kDriveKinematics,
// Position contollers
// Position controllers
new PIDController(AutoConstants.kPXController, 0, 0),
new PIDController(AutoConstants.kPYController, 0, 0),
new ProfiledPIDController(

View File

@@ -30,7 +30,7 @@ public class RobotContainer {
private final Drivetrain m_drivetrain = new Drivetrain();
private final OnBoardIO m_onboardIO = new OnBoardIO(ChannelMode.INPUT, ChannelMode.INPUT);
// Assumes a gamepad plugged into channnel 0
// Assumes a gamepad plugged into channel 0
private final Joystick m_controller = new Joystick(0);
// Create SmartDashboard chooser for autonomous routines