diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2024-03-28 15:31:07 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-28 15:31:07 +0100 |
| commit | 1ba37c39b1fa70651a1c7748c5829656cd3e6dea (patch) | |
| tree | e74b76e29d6618228b67112543943215f0eb011d /example/disasm | |
| parent | 319229f8675fb3d84655b1701a31eb9064560d3c (diff) | |
| parent | 46a201ecd64b478fc947d8b1b2e830b767bb66eb (diff) | |
| download | miasm-1ba37c39b1fa70651a1c7748c5829656cd3e6dea.tar.gz miasm-1ba37c39b1fa70651a1c7748c5829656cd3e6dea.zip | |
Merge pull request #1474 from DimitriPapadopoulos/codespell
Fix typos found by codespell
Diffstat (limited to 'example/disasm')
| -rw-r--r-- | example/disasm/dis_binary.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/disasm/dis_binary.py b/example/disasm/dis_binary.py index af140f28..cf927adb 100644 --- a/example/disasm/dis_binary.py +++ b/example/disasm/dis_binary.py @@ -8,7 +8,7 @@ fdesc = open(sys.argv[1], 'rb') loc_db = LocationDB() # The Container will provide a *bin_stream*, bytes source for the disasm engine -# It will prodive a view from a PE or an ELF. +# It will provide a view from a PE or an ELF. cont = Container.from_stream(fdesc, loc_db) # The Machine, instantiated with the detected architecture, will provide tools |