about summary refs log tree commit diff stats
path: root/example
diff options
context:
space:
mode:
Diffstat (limited to 'example')
-rw-r--r--example/disasm/full.py2
-rw-r--r--example/ida/depgraph.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/example/disasm/full.py b/example/disasm/full.py
index 153666f2..cc7f9be8 100644
--- a/example/disasm/full.py
+++ b/example/disasm/full.py
@@ -305,7 +305,7 @@ if args.propagexpr:
                         out[reg] = dst
             return set(out.values())
 
-    # Add dummy dependency to uncover out regs affectation
+    # Add dummy dependency to uncover out regs assignment
     for loc in ircfg_a.leaves():
         irblock = ircfg_a.blocks.get(loc)
         if irblock is None:
diff --git a/example/ida/depgraph.py b/example/ida/depgraph.py
index 13c37eee..2c79c05d 100644
--- a/example/ida/depgraph.py
+++ b/example/ida/depgraph.py
@@ -227,7 +227,7 @@ def launch_depgraph():
     settings.Execute()
 
     loc_key, elements, line_nb = settings.loc_key, settings.elements, settings.line_nb
-    # Simplify affectations
+    # Simplify assignments
     for irb in ircfg.blocks.values():
         irs = []
         offset = ir_arch.loc_db.get_location_offset(irb.loc_key)