Skip to content

Commit 75599f8

Browse files
Fix typo in comment within Parser.kt
1 parent e8e5424 commit 75599f8

File tree

1 file changed

+1
-1
lines changed
  • core/common/src/internal/format/parser

1 file changed

+1
-1
lines changed

core/common/src/internal/format/parser/Parser.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ internal fun <T> List<ParserStructure<T>>.concat(): ParserStructure<T> {
7676
val newOperations = mutableListOf<ParserOperation<T>>()
7777
var currentNumberSpan: MutableList<NumberConsumer<T>>? = null
7878
val unconditionalModifications = mutableListOf<UnconditionalModification<T>>()
79-
// joining together the number of consumers in this parser before the first alternative;
79+
// joining together the number consumers in this parser before the first alternative;
8080
// collecting the unconditional modifications to push them to the end of all the parser's branches.
8181
for (op in operations) {
8282
if (op is NumberSpanParserOperation) {

0 commit comments

Comments
 (0)