Skip to content

Commit

Permalink
Fix formatting of uniref::model::member module
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Oct 4, 2023
1 parent 46e7b68 commit a859d4b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/uniref/model/member.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ impl FromXml for Member {
buffer: &mut Vec<u8>,
) -> Result<Self, Error> {
debug_assert!(
event.local_name().as_ref() == b"member" || event.local_name().as_ref() == b"representativeMember"
event.local_name().as_ref() == b"member"
|| event.local_name().as_ref() == b"representativeMember"
);

let mut sequence = None;
Expand Down

0 comments on commit a859d4b

Please sign in to comment.