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.
Parser.kt
1 parent e8e5424 commit 75599f8Copy full SHA for 75599f8
core/common/src/internal/format/parser/Parser.kt
@@ -76,7 +76,7 @@ internal fun <T> List<ParserStructure<T>>.concat(): ParserStructure<T> {
76
val newOperations = mutableListOf<ParserOperation<T>>()
77
var currentNumberSpan: MutableList<NumberConsumer<T>>? = null
78
val unconditionalModifications = mutableListOf<UnconditionalModification<T>>()
79
- // joining together the number of consumers in this parser before the first alternative;
+ // joining together the number consumers in this parser before the first alternative;
80
// collecting the unconditional modifications to push them to the end of all the parser's branches.
81
for (op in operations) {
82
if (op is NumberSpanParserOperation) {
0 commit comments