Skip to content

Commit

Permalink
Enum typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
Cerclique committed Oct 17, 2024
1 parent 180276e commit f9717a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/dissector_configuration/src/base.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ impl Base {
pub fn get_values_as_string() -> Vec<String> {
Self::iter()
.map(|x| match x {
Base::DecHex => "dec_hex".to_string(),
Base::HexDec => "hex_dec".to_string(),
Base::DoyUtc => "doy_utc".to_string(),
Base::DecHex => "Dec_Hex".to_string(),
Base::HexDec => "Hex_Dec".to_string(),
Base::DoyUtc => "Doy_Utc".to_string(),
b => format!("{}", b),
})
.collect()
Expand Down

0 comments on commit f9717a5

Please sign in to comment.