We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e731337 commit 33a81cfCopy full SHA for 33a81cf
1 file changed
rusty_parser/src/expr/binary_expression.rs
@@ -73,7 +73,7 @@ fn operator() -> impl Parser<StringView, bool, Output = Positioned<Operator>, Er
73
// no whitespace needed
74
lead_opt_ws(operator_p()),
75
// whitespace needed
76
- lead_ws(operator_p()).or(lead_opt_ws(symbol_operator_p())),
+ symbol_operator_p().or(lead_ws(operator_p())),
77
)
78
}
79
0 commit comments