We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7d1918 commit cc7dfd3Copy full SHA for cc7dfd3
mambaSharedFramework/PlaylistTagParser.swift
@@ -27,14 +27,14 @@ public struct PlaylistTagValueData {
27
}
28
/// The actual value
29
let value: String
30
- /// Inidcates if the value should be quote-escaped or not
+ /// Indicates if the value should be quote-escaped or not
31
let quoteEscaped: Bool
32
33
34
public typealias PlaylistTagDictionary = OrderedDictionary<String, PlaylistTagValueData>
35
36
/// Describes a object that parse an individual tag from a line in a HLS playlist
37
-public protocol PlaylistTagParser: class {
+public protocol PlaylistTagParser: AnyObject {
38
39
/**
40
Parses an playlist tag from a String. (i.e. if your tag is "#EXT-GENERICTAG:<Values>", you would pass "<Values>" as your string argument)
0 commit comments