Skip to content
This repository was archived by the owner on Jul 16, 2024. It is now read-only.

Commit 1ca9356

Browse files
authored
Fix Typos (#281)
1 parent 56a826e commit 1ca9356

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

source/docs/getting-started/best-practices.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Best Practices For Competition
44
Before Competition
55
------------------
66
* Ensure you have spares of the relevant electronics if you can afford it (switch, coprocessor, cameras, etc.).
7-
* Download the latest release .jar onto your computer and update your Pi if necessary (only update if the release is labeled "critical" or similar, we do not recommend updating right before an event in case there are unforseen bugs).
7+
* Download the latest release .jar onto your computer and update your Pi if necessary (only update if the release is labeled "critical" or similar, we do not recommend updating right before an event in case there are unforeseen bugs).
88
* Test out PhotonVision at your home setup.
99
* Ensure that you have set up SmartDashboard / Shuffleboard to view your camera streams during matches.
1010
* Follow all the recommendations under the Networking section in installation (network switch and static IP).

source/docs/getting-started/installation/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ This section will walk you through how to wire your coprocessor to get power.
3131
Step 3: Networking
3232
------------------
3333

34-
This section will walk you though how to connect your coprocessor to a network. This section is very important (and easy to get wrong), so we reccomend you read it throughly.
34+
This section will walk you though how to connect your coprocessor to a network. This section is very important (and easy to get wrong), so we recommend you read it thoroughly.
3535

3636
.. toctree::
3737
:maxdepth: 1

source/docs/getting-started/installation/networking.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ If you would like to access your Ethernet-connected vision device from a compute
5252
Camera Stream Ports
5353
-------------------
5454

55-
The camera streams start at they begin at 1181 with two ports for each camera (ex. 1181 and 1182 for camera one, 1183 and 1184 for camera two, etc.). The easiest way to identify the port of the camera that you want is by double clicking on the stream, which opens it in a seperate page. The port will be listed below the stream.
55+
The camera streams start at they begin at 1181 with two ports for each camera (ex. 1181 and 1182 for camera one, 1183 and 1184 for camera two, etc.). The easiest way to identify the port of the camera that you want is by double clicking on the stream, which opens it in a separate page. The port will be listed below the stream.

source/docs/getting-started/installation/sw_install/linux-pc.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Go to the `GitHub releases page <https://github.com/PhotonVision/photonvision/re
2121
.. note::
2222
If your coprocessor has a 64 bit ARM based CPU architecture (OrangePi, Raspberry Pi, etc.), download the LinuxArm64.jar file.
2323

24-
If your coprocessor has an 64 bit x86 based CPU arcitecture (Mini PC, laptop, etc.), download the Linuxx64.jar file.
24+
If your coprocessor has an 64 bit x86 based CPU architecture (Mini PC, laptop, etc.), download the Linuxx64.jar file.
2525

2626

2727
.. warning:: Be careful to pick the latest stable release. "Draft" or "Pre-Release" versions are not stable and often have bugs.

source/docs/getting-started/installation/sw_install/mac-os.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ Accessing the PhotonVision Interface
3838
------------------------------------
3939
Once the Java backend is up and running, you can access the main vision interface by navigating to ``localhost:5800`` inside your browser.
4040

41-
.. warning:: Due to current `cscore <https://github.com/wpilibsuite/allwpilib/tree/main/cscore>`_ restrictions, it is unlikley any streams will open from real webcams.
41+
.. warning:: Due to current `cscore <https://github.com/wpilibsuite/allwpilib/tree/main/cscore>`_ restrictions, it is unlikely any streams will open from real webcams.

source/docs/hardware/Settings.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Here, you can view general data on your system, including version, hardware, you
99

1010
Networking
1111
^^^^^^^^^^
12-
Here, you can set your team number, switch your IP between DCHP and static, and specify your host name. For more information about on-robot networking, click `here. <https://docs.wpilib.org/en/latest/docs/networking/networking-introduction/networking-basics.html>`_
12+
Here, you can set your team number, switch your IP between DHCP and static, and specify your host name. For more information about on-robot networking, click `here. <https://docs.wpilib.org/en/latest/docs/networking/networking-introduction/networking-basics.html>`_
1313

1414
.. note:: A team number is always required if using PhotonVision on a robot.
1515

source/docs/programming/nt-api.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ About
99
API
1010
^^^
1111

12-
.. warning:: NetworkTables is not a supported setup/viable option when using PhotonVision as we only send one target at a time (this is problematic when using AprilTags, which will return data from multiple tags at once). We reccomend using PhotonLib.
12+
.. warning:: NetworkTables is not a supported setup/viable option when using PhotonVision as we only send one target at a time (this is problematic when using AprilTags, which will return data from multiple tags at once). We recommend using PhotonLib.
1313

1414
The tables below contain the the name of the key for each entry that PhotonVision sends over the network and a short description of the key. The entries should be extracted from a subtable with your camera's nickname (visible in the PhotonVision UI) under the main ``photonvision`` table.
1515

source/docs/programming/photonlib/using-target-data.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Estimating Field Relative Pose with AprilTags
8585

8686
Getting the Yaw To a Pose
8787
-------------------------
88-
``getYawToPose(Pose2d robotPose, Pose2d targetPose)`` returns the ``Rotation2d`` between your robot and a target. This is useful when turning towards an arbitraty target on the field (ex. the center of the hub in 2022).
88+
``getYawToPose(Pose2d robotPose, Pose2d targetPose)`` returns the ``Rotation2d`` between your robot and a target. This is useful when turning towards an arbitrary target on the field (ex. the center of the hub in 2022).
8989

9090
.. tab-set-code::
9191
.. code-block:: java

source/docs/troubleshooting/camera-troubleshooting.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ If you haven't yet, please refer to :ref:`the Pi CSI Camera Configuration page <
1616
| VisionSource created | Adding 1 configs to VMM. | No output from VisionSourceManager |
1717
+----------------------------------+--------------------------------------------------------+------------------------------------+
1818

19-
If the driver isn't loaded, you may be using a non-official Pi image, or an image not new enough. Try updating to the most recent image avaliable (one released for 2023) -- if that doesn't resolve the problem, :ref:`contact us<index:Contact Us>` with your settings ZIP file and Pi version/camera version/config.txt file used.
19+
If the driver isn't loaded, you may be using a non-official Pi image, or an image not new enough. Try updating to the most recent image available (one released for 2023) -- if that doesn't resolve the problem, :ref:`contact us<index:Contact Us>` with your settings ZIP file and Pi version/camera version/config.txt file used.
2020

2121
If the camera is not detected, the most likely cause is either a config.txt file incorrectly set-up, or a ribbon cable attached backwards. Review the :ref:`picam configuration page <docs/hardware/picamconfig:pi camera configuration>`, and verify the ribbon cable is properly oriented at both ends, and that it is _fully_ inserted into the FFC connector. Then, :ref:`contact us<index:Contact Us>` with your settings ZIP file and Pi version/camera version/config.txt file used.
2222

0 commit comments

Comments
 (0)