One typo fix and one heading change, both in comments. No functional changes.
| 'not' a=inversion { _PyAST_UnaryOp(Not, a, EXTRA) }
| comparison
-# Comparisons operators
-# ---------------------
+# Comparison operators
+# --------------------
comparison[expr_ty]:
| a=bitwise_or b=compare_op_bitwise_or_pair+ {
isnot_bitwise_or[CmpopExprPair*]: 'is' 'not' a=bitwise_or { _PyPegen_cmpop_expr_pair(p, IsNot, a) }
is_bitwise_or[CmpopExprPair*]: 'is' a=bitwise_or { _PyPegen_cmpop_expr_pair(p, Is, a) }
-# Logical operators
+# Bitwise operators
# -----------------
bitwise_or[expr_ty]: