Fix typo in operator.rs
(#1750)
This commit is contained in:
parent
4a86af1d1f
commit
c7a2430fad
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ impl fmt::Display for Operator {
|
||||||
Self::Pow => "**",
|
Self::Pow => "**",
|
||||||
Self::Inc => "+=",
|
Self::Inc => "+=",
|
||||||
Self::Dec => "-=",
|
Self::Dec => "-=",
|
||||||
Self::Ext => "+=?",
|
Self::Ext => "+?=",
|
||||||
Self::Equal => "=",
|
Self::Equal => "=",
|
||||||
Self::Exact => "==",
|
Self::Exact => "==",
|
||||||
Self::NotEqual => "!=",
|
Self::NotEqual => "!=",
|
||||||
|
|
Loading…
Reference in a new issue