Skip to content
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

Fix various typos #6980

Merged
merged 1 commit into from
Aug 19, 2024
Merged
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
2 changes: 1 addition & 1 deletion hal/src/main/java/edu/wpi/first/hal/REVPHFaults.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public class REVPHFaults {
/** The compressor output has an open circuit. */
public final boolean CompressorOpen;

/** An overcurrent event occurred on a solenoid ouput. */
/** An overcurrent event occurred on a solenoid output. */
public final boolean SolenoidOverCurrent;

/** The input voltage is below the minimum voltage. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class REVPHStickyFaults {
/** The compressor output has an open circuit. */
public final boolean CompressorOpen;

/** An overcurrent event occurred on a solenoid ouput. */
/** An overcurrent event occurred on a solenoid output. */
public final boolean SolenoidOverCurrent;

/** The input voltage is below the minimum voltage. */
Expand Down
4 changes: 2 additions & 2 deletions hal/src/main/native/include/hal/REVPH.h
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ struct HAL_REVPHFaults {
uint32_t compressorOverCurrent : 1;
/** The compressor output has an open circuit. */
uint32_t compressorOpen : 1;
/** An overcurrent event occurred on a solenoid ouput. */
/** An overcurrent event occurred on a solenoid output. */
uint32_t solenoidOverCurrent : 1;
/** The input voltage is below the minimum voltage. */
uint32_t brownout : 1;
Expand All @@ -114,7 +114,7 @@ struct HAL_REVPHStickyFaults {
uint32_t compressorOverCurrent : 1;
/** The compressor output has an open circuit. */
uint32_t compressorOpen : 1;
/** An overcurrent event occurred on a solenoid ouput. */
/** An overcurrent event occurred on a solenoid output. */
uint32_t solenoidOverCurrent : 1;
/** The input voltage is below the minimum voltage. */
uint32_t brownout : 1;
Expand Down
4 changes: 2 additions & 2 deletions wpilibc/src/main/native/include/frc/PneumaticHub.h
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ class PneumaticHub : public PneumaticsBase {
uint32_t CompressorOverCurrent : 1;
/** The compressor output has an open circuit. */
uint32_t CompressorOpen : 1;
/** An overcurrent event occurred on a solenoid ouput. */
/** An overcurrent event occurred on a solenoid output. */
uint32_t SolenoidOverCurrent : 1;
/** The input voltage is below the minimum voltage. */
uint32_t Brownout : 1;
Expand Down Expand Up @@ -218,7 +218,7 @@ class PneumaticHub : public PneumaticsBase {
uint32_t CompressorOverCurrent : 1;
/** The compressor output has an open circuit. */
uint32_t CompressorOpen : 1;
/** An overcurrent event occurred on a solenoid ouput. */
/** An overcurrent event occurred on a solenoid output. */
uint32_t SolenoidOverCurrent : 1;
/** The input voltage is below the minimum voltage. */
uint32_t Brownout : 1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public boolean isReversed() {
*
* @param viewIndex the view-local index
* @return the corresponding global index
* @throws IndexOutOfBoundsException if the view index is not contained withing the bounds of this
* @throws IndexOutOfBoundsException if the view index is not contained within the bounds of this
* view
*/
private int nativeIndex(int viewIndex) {
Expand Down
Loading