about summary refs log tree commit diff stats
path: root/miasm2/jitter/jitload.py
diff options
context:
space:
mode:
authorWilliam Bruneau <william.bruneau@epfedu.fr>2018-01-29 15:07:27 +0100
committerWilliam Bruneau <william.bruneau@epfedu.fr>2018-01-29 15:07:27 +0100
commit8dabddcc9ffc743d65b00879d00ea83973e94daf (patch)
tree1fc2145d6a3855b04cd14b36aebbeb7a2ac08934 /miasm2/jitter/jitload.py
parent1ef1c5024ab361d2a38237b9d3752ea7d66a1165 (diff)
downloadmiasm-8dabddcc9ffc743d65b00879d00ea83973e94daf.tar.gz
miasm-8dabddcc9ffc743d65b00879d00ea83973e94daf.zip
Fix: 'brakpoint' -> 'breakpoint'
Diffstat (limited to '')
-rw-r--r--miasm2/jitter/jitload.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/jitter/jitload.py b/miasm2/jitter/jitload.py
index 4760c8dd..ff7ba215 100644
--- a/miasm2/jitter/jitload.py
+++ b/miasm2/jitter/jitload.py
@@ -448,7 +448,7 @@ class jitter:
             return ret
 
     def handle_function(self, f_addr):
-        """Add a brakpoint which will trigger the function handler"""
+        """Add a breakpoint which will trigger the function handler"""
         self.add_breakpoint(f_addr, self.handle_lib)
 
     def add_lib_handler(self, libs, user_globals=None):