diff options
| author | Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> | 2024-03-18 09:08:21 +0100 |
|---|---|---|
| committer | Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> | 2024-03-18 10:10:24 +0100 |
| commit | 46a201ecd64b478fc947d8b1b2e830b767bb66eb (patch) | |
| tree | 99818d355ee172717fc4322e3c0c7a7ae112979c /example | |
| parent | 2b1273e097495cbce6df53b0e5d9f03692df82b0 (diff) | |
| download | focaccia-miasm-46a201ecd64b478fc947d8b1b2e830b767bb66eb.tar.gz focaccia-miasm-46a201ecd64b478fc947d8b1b2e830b767bb66eb.zip | |
Fix typos found by codespell
Diffstat (limited to 'example')
| -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 |