We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69ec676 commit e6041b3Copy full SHA for e6041b3
Sources/TOMLDecoder/Parsing/Parser.swift
@@ -1100,7 +1100,6 @@ extension Token {
1100
var index = text.lowerBound
1101
var endIndex = text.upperBound
1102
1103
-
1104
if endIndex - index >= 3 && bytes[index] == CodeUnits.doubleQuote && bytes[index + 1] == CodeUnits.doubleQuote && bytes[index + 2] == CodeUnits.doubleQuote ||
1105
endIndex - index >= 3 && bytes[index] == CodeUnits.singleQuote && bytes[index + 1] == CodeUnits.singleQuote && bytes[index + 2] == CodeUnits.singleQuote
1106
{
0 commit comments