about summary refs log tree commit diff stats
path: root/miasm2/expression/expression.py
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2019-01-17 07:30:56 +0100
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2019-01-17 08:57:31 +0100
commit5fcbef659dd5d27d2953e8f35ebe004655b3f183 (patch)
tree79093188e4172955d310bff9f2c26998e5aac42f /miasm2/expression/expression.py
parent04f2665bdc67dc350f469841c748542c70ea9747 (diff)
downloadmiasm-5fcbef659dd5d27d2953e8f35ebe004655b3f183.tar.gz
miasm-5fcbef659dd5d27d2953e8f35ebe004655b3f183.zip
Fix bad english
Diffstat (limited to 'miasm2/expression/expression.py')
-rw-r--r--miasm2/expression/expression.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/miasm2/expression/expression.py b/miasm2/expression/expression.py
index e7657860..925190ca 100644
--- a/miasm2/expression/expression.py
+++ b/miasm2/expression/expression.py
@@ -669,7 +669,7 @@ class ExprLoc(Expr):
 
 class ExprAssign(Expr):
 
-    """An ExprAssign represent an affection from an Expression to another one.
+    """An ExprAssign represent an assignment from an Expression to another one.
 
     Some use cases:
      - var1 <- 2
@@ -679,8 +679,8 @@ class ExprAssign(Expr):
 
     def __init__(self, dst, src):
         """Create an ExprAssign for dst <- src
-        @dst: Expr, affectation destination
-        @src: Expr, affectation source
+        @dst: Expr, assignment destination
+        @src: Expr, assignment source
         """
         # dst & src must be Expr
         assert isinstance(dst, Expr)