We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 882cb88 commit ea7969aCopy full SHA for ea7969a
Sources/StructuredHeaders/Decoder/StructuredFieldDecoder.swift
@@ -64,7 +64,7 @@ extension StructuredFieldDecoder {
64
class _StructuredFieldDecoder<BaseData: RandomAccessCollection> where BaseData.Element == UInt8, BaseData.SubSequence: Hashable {
65
private var parser: StructuredFieldParser<BaseData>
66
67
- // For now we use a stack here because the CoW operations on Array would stuck. Ideally I'd just have us decode
+ // For now we use a stack here because the CoW operations on Array would suck. Ideally I'd just have us decode
68
// our way down with values, but doing that is a CoWy nightmare from which we cannot escape.
69
private var _codingStack: [CodingStackEntry]
70
0 commit comments