flow/ala: fix typo for And (thanks Lars)
This commit is contained in:
parent
b15eae3081
commit
1966117e17
|
@ -32,7 +32,7 @@ class Mul(_SimpleBinary):
|
|||
|
||||
class And(_SimpleBinary):
|
||||
def __init__(self, bv):
|
||||
_SimpleBinary.__init__(self, '*', bv, bv)
|
||||
_SimpleBinary.__init__(self, '&', bv, bv)
|
||||
|
||||
class Xor(_SimpleBinary):
|
||||
def __init__(self, bv):
|
||||
|
|
Loading…
Reference in New Issue