summaryrefslogtreecommitdiff
path: root/python/typelibrary.py
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2021-08-27 13:39:24 -0400
committerPeter LaFosse <peter@vector35.com>2021-09-06 11:46:43 -0400
commitf00edcefb859c9245494f72280b14eb0419fd609 (patch)
treef2500f233642c42c78292827b9869cf596054f10 /python/typelibrary.py
parente4c9f173226bc04332ed0fab1d4a083b23ce72ba (diff)
Fix some comments in typelibrary.py
Diffstat (limited to 'python/typelibrary.py')
-rw-r--r--python/typelibrary.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/python/typelibrary.py b/python/typelibrary.py
index 2d64b724..c4d495c3 100644
--- a/python/typelibrary.py
+++ b/python/typelibrary.py
@@ -271,7 +271,7 @@ class TypeLibrary:
through NamedTypeReferences are already appropriately prepared.
To add types and objects from an existing BinaryView, it is recommended to use
- :py:meth:`export_object_to_library <binaryninja.binaryview.BinaryView.export_object_to_library>`, which will automatically pull in
+ :py:meth:`export_object_to_library <binaryview.BinaryView.export_object_to_library>`, which will automatically pull in
all referenced types and record additional dependencies as needed.
:param QualifiedName name:
@@ -292,7 +292,7 @@ class TypeLibrary:
through NamedTypeReferences are already appropriately prepared.
To add types and objects from an existing BinaryView, it is recommended to use
- :py:meth:`export_type_to_library <binaryninja.binaryview.BinaryView.export_type_to_library>`, which will automatically pull in
+ :py:meth:`export_type_to_library <binaryview.BinaryView.export_type_to_library>`, which will automatically pull in
all referenced types and record additional dependencies as needed.
:param QualifiedName name:
@@ -310,7 +310,7 @@ class TypeLibrary:
"""
`get_named_object` direct extracts a reference to a contained object -- when
attempting to extract types from a library into a BinaryView, consider using
- :py:meth:`import_library_object <binaryninja.binaryview.BinaryView.import_library_object>` instead.
+ :py:meth:`import_library_object <binaryview.BinaryView.import_library_object>` instead.
:param QualifiedName name:
:rtype: Type
@@ -326,7 +326,7 @@ class TypeLibrary:
"""
`get_named_type` direct extracts a reference to a contained type -- when
attempting to extract types from a library into a BinaryView, consider using
- :py:meth:`import_library_type <binaryninja.binaryview.BinaryView.import_library_type>` instead.
+ :py:meth:`import_library_type <binaryview.BinaryView.import_library_type>` instead.
:param QualifiedName name:
:rtype: Type