diff options
Diffstat (limited to 'example/expression/basic_op.py')
| -rw-r--r-- | example/expression/basic_op.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/expression/basic_op.py b/example/expression/basic_op.py index a9ed00e3..6032f483 100644 --- a/example/expression/basic_op.py +++ b/example/expression/basic_op.py @@ -15,7 +15,7 @@ c = ExprOp('+', a, b) print c # (eax + ebx) -# + automaticaly generates ExprOp('+', a, b) +# + automatically generates ExprOp('+', a, b) c = a + b print c # (eax + ebx) |