about summary refs log tree commit diff stats
diff options
context:
space:
mode:
author_Frky <saouleur@gmail.com>2017-10-04 08:54:51 +0200
committerGitHub <noreply@github.com>2017-10-04 08:54:51 +0200
commitf920991667bb11b5ecae77579e89697f7a8a45c7 (patch)
treea4c977c9853472f7ad21de801ba7831ad15aca88
parent58ed3f716b90da8d879aaa408f0c7ce1ea86a22c (diff)
downloadmiasm-f920991667bb11b5ecae77579e89697f7a8a45c7.tar.gz
miasm-f920991667bb11b5ecae77579e89697f7a8a45c7.zip
Update README.md
Change dis_multibloc (deprecated warning) to dis_multiblock
Diffstat (limited to '')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index bb2145a8..8b1c371e 100644
--- a/README.md
+++ b/README.md
@@ -165,7 +165,7 @@ Disassembling the shellcode at address `0`:
 >>> from miasm2.analysis.machine import Machine
 >>> machine = Machine('x86_32')
 >>> mdis = machine.dis_engine(c.bin_stream)
->>> blocs = mdis.dis_multibloc(0)
+>>> blocs = mdis.dis_multiblock(0)
 >>> for b in blocs:
 ...  print b
 ...