Skip to content

Commit be0f24b

Browse files
uklotzdeSerial-ATA
authored andcommitted
Fix typo
1 parent 5d6160f commit be0f24b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/id3/v2/read.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ where
2020
let ret;
2121
if header.flags.unsynchronisation {
2222
// Unsynchronize the entire tag
23-
let mut unsyncronized_reader = UnsynchronizedStream::new(tag_bytes);
24-
ret = read_all_frames_into_tag(&mut unsyncronized_reader, header, parse_mode)?;
23+
let mut unsynchronized_reader = UnsynchronizedStream::new(tag_bytes);
24+
ret = read_all_frames_into_tag(&mut unsynchronized_reader, header, parse_mode)?;
2525

2626
// Get the `Take` back from the `UnsynchronizedStream`
27-
tag_bytes = unsyncronized_reader.into_inner();
27+
tag_bytes = unsynchronized_reader.into_inner();
2828
} else {
2929
ret = read_all_frames_into_tag(&mut tag_bytes, header, parse_mode)?;
3030
};

0 commit comments

Comments
 (0)