"parked" is a stupid name

This commit is contained in:
Alex Janka 2024-01-18 10:08:31 +11:00
parent b13c40429f
commit 3add4893f9

View file

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