diff options
| author | Mason Reed <mason@vector35.com> | 2026-01-13 19:40:09 -0800 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2026-01-13 19:40:09 -0800 |
| commit | 56010d289afa142ebd206db8fc3b22f89d7a4ec0 (patch) | |
| tree | fd7d3488a96541f91a2dc587dec0904a739b6ef2 /rust | |
| parent | e299a6c1bf74f0ca6d2c3d79135e8c23e6b9fbba (diff) | |
[Rust] Fix misc doc comments missing
Diffstat (limited to 'rust')
| -rw-r--r-- | rust/src/binary_view.rs | 4 |
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 { |
