about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCamille Mougey <commial@gmail.com>2019-04-19 12:58:48 +0200
committerGitHub <noreply@github.com>2019-04-19 12:58:48 +0200
commit2d65efa72eb1692a24706041954be244c72b7865 (patch)
treeb266ef7abfe2640452005f7e3bd26e8232a94a68
parent6783d8a5f7068b3748e3cd5006c7f55fc6b7a5e1 (diff)
parentba981ac09eacef96f19a603409f7881925cca052 (diff)
downloadmiasm-2d65efa72eb1692a24706041954be244c72b7865.tar.gz
miasm-2d65efa72eb1692a24706041954be244c72b7865.zip
Merge pull request #1026 from Spl3en/master
Fix typos in IR documentation
-rw-r--r--miasm/ir/ir.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/miasm/ir/ir.py b/miasm/ir/ir.py
index eb9857b1..372b712a 100644
--- a/miasm/ir/ir.py
+++ b/miasm/ir/ir.py
@@ -831,7 +831,7 @@ class IntermediateRepresentation(object):
     def add_block(self, block, gen_pc_updt=False):
         """
         DEPRECATED function
-        Use add_block instead of add_block
+        Use add_asmblock_to_ircfg instead of add_block
         """
         warnings.warn("""DEPRECATION WARNING
         ircfg is now out of IntermediateRepresentation
@@ -844,7 +844,7 @@ class IntermediateRepresentation(object):
     def add_bloc(self, block, gen_pc_updt=False):
         """
         DEPRECATED function
-        Use add_block instead of add_block
+        Use add_asmblock_to_ircfg instead of add_bloc
         """
         self.add_block(block, gen_pc_updt)