From b3f88b7741b04975126c074609f1fa24475e64ba Mon Sep 17 00:00:00 2001 From: Galen Williamson Date: Thu, 30 May 2024 17:23:28 -0400 Subject: fix cargo doc warnings --- rust/src/mlil/function.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'rust/src/mlil/function.rs') diff --git a/rust/src/mlil/function.rs b/rust/src/mlil/function.rs index d9e13313..928f1b6a 100644 --- a/rust/src/mlil/function.rs +++ b/rust/src/mlil/function.rs @@ -549,7 +549,7 @@ impl MediumLevelILFunction { } /// This gets just the MLIL variables - you may be interested in the union - /// of [MediumLevelIlFunction::aliased_variables] and + /// of [MediumLevelILFunction::aliased_variables] and /// [crate::function::Function::parameter_variables] for all the /// variables used in the function pub fn variables(&self) -> Array { @@ -559,7 +559,7 @@ impl MediumLevelILFunction { } /// This returns a list of Variables that are taken reference to and used - /// elsewhere. You may also wish to consider [MediumLevelIlFunction::variables] + /// elsewhere. You may also wish to consider [MediumLevelILFunction::variables] /// and [crate::function::Function::parameter_variables] pub fn aliased_variables(&self) -> Array { let mut count = 0; @@ -568,7 +568,7 @@ impl MediumLevelILFunction { } /// This gets just the MLIL SSA variables - you may be interested in the - /// union of [MediumLevelIlFunction::aliased_variables] and + /// union of [MediumLevelILFunction::aliased_variables] and /// [crate::function::Function::parameter_variables] for all the /// variables used in the function. pub fn ssa_variables(&self) -> Array> { -- cgit v1.3.1