summaryrefslogtreecommitdiff
path: root/python/architecture.py
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2024-08-04 22:20:42 -0400
committerJordan Wiens <jordan@psifertex.com>2024-08-04 22:20:42 -0400
commit942d1cd1c0517e7a73a0a6f3d0102b25b967e40e (patch)
treec82f4f80af1561999fef503d4c919174b0ea1758 /python/architecture.py
parent8b3c5bc8ea70b837dd7fff17e79a60c3612169d9 (diff)
spellcheck pass on pydocs
Diffstat (limited to 'python/architecture.py')
-rw-r--r--python/architecture.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/architecture.py b/python/architecture.py
index d07d718f..ec65b92e 100644
--- a/python/architecture.py
+++ b/python/architecture.py
@@ -193,7 +193,7 @@ class Architecture(metaclass=_ArchitectureMetaClass):
>>> from binaryninja import *
>>> arch = Architecture['x86']
- .. note:: The `max_instr_length` property of an architecture is not necessarily representative of the maximum instruction size of the associated CPU architecture. Rather, it represents the maximum size of a potential instruction that the architecture plugin can handle. So for example, the value for x86 is 16 despite the lagest valid instruction being only 15 bytes long, and the value for mips32 is currently 8 because multiple instrutions are decoded looking for delay slots so they can be reordered.
+ .. note:: The `max_instr_length` property of an architecture is not necessarily representative of the maximum instruction size of the associated CPU architecture. Rather, it represents the maximum size of a potential instruction that the architecture plugin can handle. So for example, the value for x86 is 16 despite the largest valid instruction being only 15 bytes long, and the value for mips32 is currently 8 because multiple instructions are decoded looking for delay slots so they can be reordered.
"""
name = None