summaryrefslogtreecommitdiff
path: root/rust/src/workflow.rs
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-11-24 15:10:42 -0500
committerMason Reed <35282038+emesare@users.noreply.github.com>2025-11-24 16:08:23 -0500
commit0f1261500334e3aafb867ef397b11fef7ff201c4 (patch)
tree97915797e11637b29c0654e294925eb9c9219d14 /rust/src/workflow.rs
parentb4d77d5b44dd322042f90b5a4a4da9075d05b644 (diff)
[Rust] Fix misc broken doc links
Diffstat (limited to 'rust/src/workflow.rs')
-rw-r--r--rust/src/workflow.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/rust/src/workflow.rs b/rust/src/workflow.rs
index a3de4221..3131a726 100644
--- a/rust/src/workflow.rs
+++ b/rust/src/workflow.rs
@@ -290,7 +290,7 @@ impl AnalysisContext {
/// Get the end address (the highest address) from the cached [`MemoryMap`].
///
- /// NOTE: This is a lock-free alternative to [`BinaryViewBase::end`].
+ /// NOTE: This is a lock-free alternative to [`BinaryViewExt::end`].
pub fn end(&self) -> u64 {
unsafe { BNAnalysisContextGetEnd(self.handle.as_ptr()) }
}
@@ -325,7 +325,7 @@ impl AnalysisContext {
/// Get the segment containing the given address from the cached [`MemoryMap`].
///
- /// NOTE: This is a lock-free alternative to [`BinaryView::segment_at`].
+ /// NOTE: This is a lock-free alternative to [`BinaryViewExt::segment_at`].
pub fn segment_at(&self, addr: u64) -> Option<Ref<Segment>> {
unsafe {
let result = BNAnalysisContextGetSegmentAt(self.handle.as_ptr(), addr);