Skip to content

Commit

Permalink
Fix various typos
Browse files Browse the repository at this point in the history
found with misspell
  • Loading branch information
sciencewhiz committed Aug 18, 2024
1 parent a325898 commit 232f16e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
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
2 changes: 1 addition & 1 deletion hal/src/main/java/edu/wpi/first/hal/REVPHStickyFaults.java
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

0 comments on commit 232f16e

Please sign in to comment.