aboutsummaryrefslogtreecommitdiff
path: root/src/reader.rs
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2021-08-22 14:43:06 -0700
committeriximeow <me@iximeow.net>2021-08-22 14:43:06 -0700
commit83f07b4e70efc45b2495d66a58f5d6ff0e5b7221 (patch)
tree513162f9ce3e9bd766f36332058ecc53685d3a56 /src/reader.rs
parenta6db35d444af1d2af5fc55961aa8785e17a90e30 (diff)
move annotation stuff to its own module
Diffstat (limited to 'src/reader.rs')
-rw-r--r--src/reader.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/reader.rs b/src/reader.rs
index acb0146..b9514ae 100644
--- a/src/reader.rs
+++ b/src/reader.rs
@@ -13,7 +13,7 @@ pub enum ReadError {
}
/// a trait defining how `Item`-sized words are read at `Address`-positioned offsets into some
-/// stream of data. for *most* uses, [`yaxpeax_arch::U8Reader`] probably is sufficient. when
+/// stream of data. for *most* uses, [`crate::U8Reader`] probably is sufficient. when
/// reading from data sources that aren't `&[u8]`, `Address` isn't a multiple of `u8`, or `Item`
/// isn't a multiple of 8 bits, `U8Reader` won't be sufficient.
pub trait Reader<Address, Item> {