summaryrefslogtreecommitdiff
path: root/rust/src
diff options
context:
space:
mode:
Diffstat (limited to 'rust/src')
-rw-r--r--rust/src/binary_view.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/rust/src/binary_view.rs b/rust/src/binary_view.rs
index 8309d15d..cdf90c07 100644
--- a/rust/src/binary_view.rs
+++ b/rust/src/binary_view.rs
@@ -1409,7 +1409,7 @@ pub trait BinaryViewExt: BinaryViewBase {
}
}
- // List of functions containing `addr`
+ /// List of functions containing `addr`
fn functions_containing(&self, addr: u64) -> Array<Function> {
unsafe {
let mut count = 0;
@@ -1664,7 +1664,7 @@ pub trait BinaryViewExt: BinaryViewBase {
}
}
- // Get all tags of a specific type
+ /// Get all tag references of a specific type
fn tags_by_type(&self, tag_type: &TagType) -> Array<TagReference> {
let mut count = 0;
unsafe {