Fix typo in operator.rs (#1750)

This commit is contained in:
teenjuna 2023-03-31 21:19:16 +07:00 committed by GitHub
parent 4a86af1d1f
commit c7a2430fad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -94,7 +94,7 @@ impl fmt::Display for Operator {
Self::Pow => "**",
Self::Inc => "+=",
Self::Dec => "-=",
Self::Ext => "+=?",
Self::Ext => "+?=",
Self::Equal => "=",
Self::Exact => "==",
Self::NotEqual => "!=",