Skip to content

Commit

Permalink
Merge pull request #280 from usbalbin/OffsetReserved
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
burrbull authored Jan 1, 2025
2 parents 909a68b + d4d54e8 commit 17238af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion svd-encoder/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ impl Sorting {
fn from_parts(parts: &[&str]) -> Option<Self> {
if parts.contains(&"Offset") {
Some(Self::Offset)
} else if parts.contains(&"OffsetReserved") {
} else if parts.contains(&"OffsetReversed") {
Some(Self::OffsetReversed)
} else if parts.contains(&"Name") {
Some(Self::Name)
Expand Down

0 comments on commit 17238af

Please sign in to comment.