Skip to content

Fix broken links #3039

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Code formatters exist to ensure that the style of code written is consistent throughout the entire codebase. This is used in many major projects; from Android to OpenCV. Teams may wish to add a formatter throughout their robot code to ensure that the codebase maintains readability and consistency throughout.

For this article, we will highlight using [Spotless](https://github.com/diffplug/spotless) for Java teams and [wpiformat](https://github.com/wpilibsuite/styleguide/blob/main/wpiformat/README.rst) for C++ teams.
For this article, we will highlight using [Spotless](https://github.com/diffplug/spotless) for Java teams and [wpiformat](https://github.com/wpilibsuite/styleguide/blob/main/wpiformat/README.md) for C++ teams.

## Spotless

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 2022 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 2022 redistributable](https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170#latest-microsoft-visual-c-redistributable-version) package is required to be installed.

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

Expand Down
Loading