diff --git a/wpilibc/src/main/native/include/frc/Alert.h b/wpilibc/src/main/native/include/frc/Alert.h index 45dc4a66a2..dde95306e0 100644 --- a/wpilibc/src/main/native/include/frc/Alert.h +++ b/wpilibc/src/main/native/include/frc/Alert.h @@ -89,9 +89,8 @@ class Alert { Alert(std::string_view group, std::string_view text, AlertType type); /** - * Sets whether the alert should currently be displayed. When activated, the - * alert text will also be sent to the console. This method can be safely - * called periodically. + * Sets whether the alert should currently be displayed. This method can be + * safely called periodically. * * @param active Whether to display the alert. */ diff --git a/wpilibj/src/main/java/edu/wpi/first/wpilibj/Alert.java b/wpilibj/src/main/java/edu/wpi/first/wpilibj/Alert.java index 23327698ee..1e57a993c9 100644 --- a/wpilibj/src/main/java/edu/wpi/first/wpilibj/Alert.java +++ b/wpilibj/src/main/java/edu/wpi/first/wpilibj/Alert.java @@ -83,8 +83,8 @@ public class Alert { } /** - * Sets whether the alert should currently be displayed. When activated, the alert text will also - * be sent to the console. This method can be safely called periodically. + * Sets whether the alert should currently be displayed. This method can be safely called + * periodically. * * @param active Whether to display the alert. */