Commit 1966117e authored by Sebastien Bourdeauducq's avatar Sebastien Bourdeauducq
Browse files

flow/ala: fix typo for And (thanks Lars)

parent b15eae30
...@@ -32,7 +32,7 @@ class Mul(_SimpleBinary): ...@@ -32,7 +32,7 @@ class Mul(_SimpleBinary):
class And(_SimpleBinary): class And(_SimpleBinary):
def __init__(self, bv): def __init__(self, bv):
_SimpleBinary.__init__(self, '*', bv, bv) _SimpleBinary.__init__(self, '&', bv, bv)
class Xor(_SimpleBinary): class Xor(_SimpleBinary):
def __init__(self, bv): def __init__(self, bv):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment