[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

@@ -181,9 +181,9 @@ public class TimedRobot extends IterativeRobotBase {
}
/**
* Return the system clock time in micrseconds 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).
* 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).
*
* @return Robot running time in microseconds, as of the start of the current periodic function.
*/