"parked" is a stupid name

This commit is contained in:
Alex Janka 2024-01-18 10:08:31 +11:00
parent cd1ba77cf4
commit db77d944cb

View file

@ -337,12 +337,12 @@ pub enum ShiftState {
Reverse,
#[serde(other)]
#[serde(alias = "P")]
Parked,
Park,
}
impl Default for ShiftState {
fn default() -> Self {
Self::Parked
Self::Park
}
}