summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorgalenbwill <galenbwill@users.noreply.github.com>2021-06-11 09:24:45 -0400
committerGitHub <noreply@github.com>2021-06-11 09:24:45 -0400
commit748f8ea95dc15dc11ce4f0142c5e25b5f7b9e7ef (patch)
tree798351701fa422c67bd72356b28bcfc7c4a32cdc /python
parente6cbebd025c06186ebb474f9f4158c8b70a48db6 (diff)
Update demangle.py
fixed typo `s/directally/directly/`
Diffstat (limited to 'python')
-rw-r--r--python/demangle.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/demangle.py b/python/demangle.py
index 33004d1a..6f007a7b 100644
--- a/python/demangle.py
+++ b/python/demangle.py
@@ -54,7 +54,7 @@ def demangle_ms(arch, mangled_name, options = False):
:param Architecture arch: Architecture for the symbol. Required for pointer and integer sizes.
:param str mangled_name: a mangled Microsoft Visual Studio C++ name
- :param options: (optional) Whether to simplify demangled names : None falls back to user settings, a BinaryView uses that BinaryView's settings, or a boolean to set it directally
+ :param options: (optional) Whether to simplify demangled names : None falls back to user settings, a BinaryView uses that BinaryView's settings, or a boolean to set it directly
:type options: Tuple[bool, BinaryView, None]
:return: returns tuple of (Type, demangled_name) or (None, mangled_name) on error
:rtype: Tuple
@@ -84,7 +84,7 @@ def demangle_gnu3(arch, mangled_name, options = None):
:param Architecture arch: Architecture for the symbol. Required for pointer and integer sizes.
:param str mangled_name: a mangled GNU3 name
- :param options: (optional) Whether to simplify demangled names : None falls back to user settings, a BinaryView uses that BinaryView's settings, or a boolean to set it directally
+ :param options: (optional) Whether to simplify demangled names : None falls back to user settings, a BinaryView uses that BinaryView's settings, or a boolean to set it directly
:type options: Tuple[bool, BinaryView, None]
:return: returns tuple of (Type, demangled_name) or (None, mangled_name) on error
:rtype: Tuple