aboutsummaryrefslogtreecommitdiff
path: root/src/annotation
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2024-06-22 12:28:13 -0700
committeriximeow <me@iximeow.net>2024-06-22 12:28:13 -0700
commitf0d0488f0dbf75fb12ec31c6a9571695e43e2b84 (patch)
tree539de9700b0a89d899560b16e0ad7cddfa6e9083 /src/annotation
parent2bbeeec8cf26c1b165cdc5e6548b28bbc3c1d6a3 (diff)
docs typos
Diffstat (limited to 'src/annotation')
-rw-r--r--src/annotation/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/annotation/mod.rs b/src/annotation/mod.rs
index 9edf262..af8b4bf 100644
--- a/src/annotation/mod.rs
+++ b/src/annotation/mod.rs
@@ -76,7 +76,7 @@ use crate::{Arch, Reader};
use core::fmt::Display;
-/// implementors of `DescriptionSink` receive descriptions of an instruction's disassembly process
+/// implementers of `DescriptionSink` receive descriptions of an instruction's disassembly process
/// and relevant offsets in the bitstream being decoded. descriptions are archtecture-specific, and
/// architectures are expected to be able to turn the bit-level `start` and `width` values into a
/// meaningful description of bits in the original instruction stream.
@@ -131,7 +131,7 @@ pub trait FieldDescription {
/// an interface to decode [`Arch::Instruction`] words from a reader of [`Arch::Word`]s, with the
/// decoder able to report descriptions of bits or fields in the instruction to a sink implementing
/// [`DescriptionSink`]. the sink may be [`NullSink`] to discard provided data. decoding with a
-/// `NullSink` should behave identically to `Decoder::decode_into`. implementors are recommended to
+/// `NullSink` should behave identically to `Decoder::decode_into`. implementers are recommended to
/// implement `Decoder::decode_into` as a call to `AnnotatingDecoder::decode_with_annotation` if
/// implementing both traits.
pub trait AnnotatingDecoder<A: Arch + ?Sized> {