From 748f8ea95dc15dc11ce4f0142c5e25b5f7b9e7ef Mon Sep 17 00:00:00 2001 From: galenbwill Date: Fri, 11 Jun 2021 09:24:45 -0400 Subject: Update demangle.py fixed typo `s/directally/directly/` --- python/demangle.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python') 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 -- cgit v1.3.1