diff options
| author | Galen Williamson <galen@vector35.com> | 2024-05-30 17:23:28 -0400 |
|---|---|---|
| committer | Galen Williamson <galen@vector35.com> | 2024-05-30 17:23:28 -0400 |
| commit | b3f88b7741b04975126c074609f1fa24475e64ba (patch) | |
| tree | 7ab2a237072147b884a1612db5b6af3de3383799 /rust/src/mlil/function.rs | |
| parent | 9356949177654013137154182516676235700832 (diff) | |
fix cargo doc warnings
Diffstat (limited to 'rust/src/mlil/function.rs')
| -rw-r--r-- | rust/src/mlil/function.rs | 6 |
1 files changed, 3 insertions, 3 deletions
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<Variable> { @@ -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<Variable> { 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<Array<SSAVariable>> { |
