summaryrefslogtreecommitdiff
path: root/python/binaryview.py
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2021-03-17 10:36:04 -0400
committerPeter LaFosse <peter@vector35.com>2021-03-19 11:15:11 -0400
commitcf2a9769397faab4d2158b9ad756d0362441ecf7 (patch)
tree81311396d1e211a2daa34dc84497eba67d84e13d /python/binaryview.py
parent17fff9c72f0f84c69ce31c8522eb67f9b68a128f (diff)
Minor spelling fixes
Diffstat (limited to 'python/binaryview.py')
-rw-r--r--python/binaryview.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/binaryview.py b/python/binaryview.py
index b1bbdb6e..3a777156 100644
--- a/python/binaryview.py
+++ b/python/binaryview.py
@@ -3542,7 +3542,7 @@ class BinaryView(object):
"""
``get_data_refs_for_type`` returns a list of virtual addresses of data which references the type ``name``.
Note, the returned addresses are the actual start of the queried type. For example, suppose there is a DataVariable
- at 0x1000 that has type A, and type A contians type B at offset 0x10. Then `get_data_refs_for_type('B')` will
+ at 0x1000 that has type A, and type A contains type B at offset 0x10. Then `get_data_refs_for_type('B')` will
return 0x1010 for it.
:param QualifiedName name: name of type to query for references
@@ -3569,7 +3569,7 @@ class BinaryView(object):
"""
``get_data_refs_for_type_field`` returns a list of virtual addresses of data which references the type ``name``.
Note, the returned addresses are the actual start of the queried type field. For example, suppose there is a
- DataVariable at 0x1000 that has type A, and type A contians type B at offset 0x10.
+ DataVariable at 0x1000 that has type A, and type A contains type B at offset 0x10.
Then `get_data_refs_for_type_field('B', 0x8)` will return 0x1018 for it.
:param QualifiedName name: name of type to query for references