Skip to content

Commit d98cf65

Browse files
committed
More rust doc fixes
1 parent e4f2a19 commit d98cf65

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

rust/src/mlil/function.rs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ impl MediumLevelILFunction {
551551

552552
/// This gets just the MLIL variables - you may be interested in the union
553553
/// of [MediumLevelILFunction::aliased_variables] and
554-
/// [crate::function::Function::parameter_variables] for all the
554+
/// [Function::parameter_variables] for all the
555555
/// variables used in the function
556556
pub fn variables(&self) -> Array<Variable> {
557557
let mut count = 0;
@@ -561,17 +561,16 @@ impl MediumLevelILFunction {
561561

562562
/// This returns a list of Variables that are taken reference to and used
563563
/// elsewhere. You may also wish to consider [MediumLevelILFunction::variables]
564-
/// and [crate::function::Function::parameter_variables]
564+
/// and [Function::parameter_variables]
565565
pub fn aliased_variables(&self) -> Array<Variable> {
566566
let mut count = 0;
567567
let uses = unsafe { BNGetMediumLevelILAliasedVariables(self.handle, &mut count) };
568568
unsafe { Array::new(uses, count, ()) }
569569
}
570570

571571
/// This gets just the MLIL SSA variables - you may be interested in the
572-
/// union of [MediumLevelILFunction::aliased_variables] and
573-
/// [crate::function::Function::parameter_variables] for all the
574-
/// variables used in the function.
572+
/// union of [MediumLevelILFunction::aliased_variables] and [Function::parameter_variables] for
573+
/// all the variables used in the function.
575574
pub fn ssa_variables(&self) -> Array<MediumLevelILSSAVariable> {
576575
let mut count = 0;
577576
let vars = unsafe { BNGetMediumLevelILVariables(self.handle, &mut count) };

0 commit comments

Comments
 (0)