about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2018-01-29 16:43:25 +0100
committerGitHub <noreply@github.com>2018-01-29 16:43:25 +0100
commitbbf3e9caf3d64a45b5305f04dd41d7935e110bf2 (patch)
tree81656aca71d6ab6802a930c6ddcc98441e61988e
parent0a2934e0a0744bffa300a6e8954f95defee255be (diff)
parent8dabddcc9ffc743d65b00879d00ea83973e94daf (diff)
downloadmiasm-bbf3e9caf3d64a45b5305f04dd41d7935e110bf2.tar.gz
miasm-bbf3e9caf3d64a45b5305f04dd41d7935e110bf2.zip
Merge pull request #664 from WilliamBruneau/typo_brakpoint
Fix: 'brakpoint' -> 'breakpoint'
-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):