summaryrefslogtreecommitdiff
path: root/rust/src
diff options
context:
space:
mode:
Diffstat (limited to 'rust/src')
-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);