[wpilib] Fix typo in TimedRobot.getLoopStartTime() docs (#8590)

Fixed a typo in the description of the getLoopStartTime function in both
C++ and Java TimedRobot class.

---------

Co-authored-by: Tyler Veness <calcmogul@gmail.com>
This commit is contained in:
FirstFox3
2026-02-05 20:57:49 -05:00
committed by GitHub
parent 3d92547d62
commit 6b225bb1f1
2 changed files with 4 additions and 4 deletions

View File

@@ -65,7 +65,7 @@ class TimedRobot : public IterativeRobotBase {
~TimedRobot() override;
/**
* Return the system clock time in micrseconds for the start of the current
* Return the system clock time in microseconds for the start of the current
* periodic loop. This is in the same time base as Timer.GetFPGATimestamp(),
* but is stable through a loop. It is updated at the beginning of every
* periodic callback (including the normal periodic loop).