Skip to content

Commit

Permalink
Fix links (#2708)
Browse files Browse the repository at this point in the history
uncovered by #2707
  • Loading branch information
sciencewhiz authored Aug 20, 2024
1 parent 08490d7 commit f54f50c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/docs/software/commandbased/command-scheduler.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ However, there is one exception: users *must* call ``CommandScheduler.getInstanc

## The ``schedule()`` Method

To schedule a command, users call the ``schedule()`` method ([Java](https://github.wpilib.org/allwpilib/docs/development/java/edu/wpi/first/wpilibj2/command/CommandScheduler.html#schedule(boolean,edu.wpi.first.wpilibj2.command.Command...)), [C++](https://github.wpilib.org/allwpilib/docs/development/cpp/classfrc2_1_1_command_scheduler.html#a9f3f7bb5c1a3cf57592fe5cfadb6a57d)). This method takes a command, and attempts to add it to list of currently-running commands, pending whether it is already running or whether its requirements are available. If it is added, its ``initialize()`` method is called.
To schedule a command, users call the ``schedule()`` method ([Java](https://github.wpilib.org/allwpilib/docs/development/java/edu/wpi/first/wpilibj2/command/CommandScheduler.html#schedule(edu.wpi.first.wpilibj2.command.Command...)), [C++](https://github.wpilib.org/allwpilib/docs/development/cpp/classfrc2_1_1_command_scheduler.html#a9f3f7bb5c1a3cf57592fe5cfadb6a57d)). This method takes a command, and attempts to add it to list of currently-running commands, pending whether it is already running or whether its requirements are available. If it is added, its ``initialize()`` method is called.

This method walks through the following steps:

Expand Down
2 changes: 1 addition & 1 deletion source/docs/zero-to-robot/step-2/python-setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Once you have installed Python, you can use pip to install RobotPy on your devel

.. note:: If you previously installed a pre-2024 or 2024 beta version of RobotPy, you should first uninstall RobotPy via ``py -m pip uninstall robotpy`` before upgrading.

.. warning:: On Windows, the [Visual Studio 2019 redistributable](https:// support.microsoft.com/en-us/help/2977003/ the-latest-supported-visual-c-downloads) package is required to be installed.
.. warning:: On Windows, the [Visual Studio 2019 redistributable](https:// support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads) package is required to be installed.

Run the following command from cmd or Powershell to install the core RobotPy packages:

Expand Down

0 comments on commit f54f50c

Please sign in to comment.