Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Geal committed Jun 15, 2024
1 parent 98a5425 commit 546a8e2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public static Either<Error, Tuple2<String, Expression>> expr2(String s) {

Either<Error, Tuple2<String, Expression.Op>> res2 = binary_op2(s);
if (res2.isLeft()) {
return Either.left(res2.getLeft());
return Either.right(t1);

}
Tuple2<String, Expression.Op> t2 = res2.get();
Expand Down

0 comments on commit 546a8e2

Please sign in to comment.