Skip to content

Commit d5db5cb

Browse files
authored
Add missing ')' (#2640)
1 parent eba3691 commit d5db5cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/docs/software/vscode-overview/creating-robot-program.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Source:
1919
`Java <https://github.com/wpilibsuite/allwpilib/blob/main/wpilibj/src/main/java/edu/wpi/first/wpilibj/TimedRobot.java>`__
2020
- `C++ <https://github.com/wpilibsuite/allwpilib/blob/main/wpilibc/src/main/native/cpp/TimedRobot.cpp>`__
2121

22-
The :code:`TimedRobot` class is the base class recommended for most users. It provides control of the robot program through a collection of :code:`init()`, :code:`periodic()`, and :code:`exit()` methods, which are called by WPILib during specific robot states (e.g. autonomous or teleoperated). During these calls, your code typically polls each input device and acts according to the data it receives. For instance, you would typically determine the position of the joystick and state of the joystick buttons on each call and act accordingly. The ``TimedRobot`` class also provides an example of retrieving autonomous routines through SendableChooser (`Java <https://github.wpilib.org/allwpilib/docs/release/java/edu/wpi/first/wpilibj/smartdashboard/SendableChooser.html>`__/ `C++ <https://github.wpilib.org/allwpilib/docs/release/cpp/classfrc_1_1_sendable_chooser.html>`__
22+
The :code:`TimedRobot` class is the base class recommended for most users. It provides control of the robot program through a collection of :code:`init()`, :code:`periodic()`, and :code:`exit()` methods, which are called by WPILib during specific robot states (e.g. autonomous or teleoperated). During these calls, your code typically polls each input device and acts according to the data it receives. For instance, you would typically determine the position of the joystick and state of the joystick buttons on each call and act accordingly. The ``TimedRobot`` class also provides an example of retrieving autonomous routines through SendableChooser (`Java <https://github.wpilib.org/allwpilib/docs/release/java/edu/wpi/first/wpilibj/smartdashboard/SendableChooser.html>`__/ `C++ <https://github.wpilib.org/allwpilib/docs/release/cpp/classfrc_1_1_sendable_chooser.html>`__)
2323

2424
.. note:: A `TimedRobot Skeleton` template is available that removes some informative comments and the autonomous example. You can use this if you're already familiar with `TimedRobot`. The example shown below is of `TimedRobot Skeleton`.
2525

0 commit comments

Comments
 (0)