Skip to content

Commit 1d82a81

Browse files
committed
Missed file
1 parent aba430e commit 1d82a81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Superpower.Tests/Combinators/ChainCombinatorTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public void SuccessLeftAssociativeChain()
6868
var chainParser = seed.Chain(
6969
Character.EqualTo('.'),
7070
Numerics.IntegerInt32,
71-
(r, o, i) => r.Add(i));
71+
(o, r, i) => r.Add(i));
7272

7373
AssertParser.SucceedsWith(chainParser, input, System.Collections.Immutable.ImmutableList.Create(1, 2, 3));
7474
}

0 commit comments

Comments
 (0)