Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #124

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/manual/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Welcome to udis86's documentation!

Udis86 is a disassembler engine that decodes a stream of binary
machine code bytes as opcodes defined in the x86 and x86-64 class
of Instruction Set Archictures. The core component of this project
of Instruction Set Architectures. The core component of this project
is libudis86 which provides a clean and simple interface to
disassemble binary code, and to inspect the disassembly to various
degrees of detail. The library is designed to aid software
Expand Down
6 changes: 3 additions & 3 deletions docs/manual/libudis86.rst
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ translator using the following function.

If you want to create your own translator, you can specify a pointer to your
own function. This function must accept a single parameter, the udis86 object
:type:`ud_t`, and it will be invoked everytime an instruction is decoded.
:type:`ud_t`, and it will be invoked every time an instruction is decoded.


Disassemble
Expand Down Expand Up @@ -488,8 +488,8 @@ disassembled instruction using the function :func:`ud_insn_opr`.
Inspect Prefixes
----------------

Prefix bytes that affect the disassembly of the instruction are availabe in the
following fields, each of which corressponds to a particular type or class of
Prefix bytes that affect the disassembly of the instruction are available in the
following fields, each of which corresponds to a particular type or class of
prefixes.

.. c:member:: uint8_t ud_t.pfx_rex
Expand Down