mirror of
https://github.com/sile/hls_m3u8.git
synced 2025-01-23 09:48:11 +00:00
Merge pull request #7 from Luro02/master
fixed spelling mistake + compiler warnings
This commit is contained in:
commit
5a231199d6
2 changed files with 2 additions and 2 deletions
|
@ -24,7 +24,7 @@ impl<'a> AttributePairs<'a> {
|
|||
self.input = rest;
|
||||
return Ok(key);
|
||||
}
|
||||
b'A'...b'Z' | b'0'...b'9' | b'-' => {}
|
||||
b'A'..=b'Z' | b'0'..=b'9' | b'-' => {}
|
||||
_ => track_panic!(
|
||||
ErrorKind::InvalidInput,
|
||||
"Malformed attribute name: {:?}",
|
||||
|
|
|
@ -260,7 +260,7 @@ impl MasterPlaylist {
|
|||
}
|
||||
|
||||
/// Returns the `EXT-X-I-FRAME-STREAM-INF` tags contained in the playlist.
|
||||
pub fn i_fream_stream_inf_tags(&self) -> &[ExtXIFrameStreamInf] {
|
||||
pub fn i_frame_stream_inf_tags(&self) -> &[ExtXIFrameStreamInf] {
|
||||
&self.i_frame_stream_inf_tags
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue