Skip to content

Commit

Permalink
language consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
rzblue committed Aug 1, 2024
1 parent 4d1dfc2 commit c8d7c09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hal/src/main/native/include/hal/PowerDistribution.h
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ struct HAL_PowerDistributionStickyFaults {
uint32_t canWarning : 1;
/** The device's CAN controller experienced a "Bus Off" event */
uint32_t canBusOff : 1;
/** The device has reset since the last time sticky faults were cleared */
/** The device has rebooted */
uint32_t hasReset : 1;
};

Expand Down
2 changes: 1 addition & 1 deletion wpilibc/src/main/native/include/frc/PowerDistribution.h
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ class PowerDistribution : public wpi::Sendable,
uint32_t CanWarning : 1;
/** The device's CAN controller experienced a "Bus Off" event */
uint32_t CanBusOff : 1;
/** The device has reset since the last time sticky faults were cleared */
/** The device has rebooted */
uint32_t HasReset : 1;

/**
Expand Down

0 comments on commit c8d7c09

Please sign in to comment.