From ff406c03609896c0e764bf2ae5575a4c20538aab Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Sun, 11 May 2025 15:14:28 -0400 Subject: [Rust] Remove useless alias function --- rust/src/function.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rust/src/function.rs') diff --git a/rust/src/function.rs b/rust/src/function.rs index ec859f7e..58b310c7 100644 --- a/rust/src/function.rs +++ b/rust/src/function.rs @@ -2154,7 +2154,7 @@ impl Function { /// Splits a variable at the definition site. The given `var` must be the /// variable unique to the definition and should be obtained by using - /// [crate::medium_level_il::MediumLevelILInstruction::get_split_var_for_definition] at the definition site. + /// [crate::medium_level_il::MediumLevelILInstruction::split_var_for_definition] at the definition site. /// /// This function is not meant to split variables that have been previously merged. Use /// [Function::unmerge_variables] to split previously merged variables. @@ -2177,7 +2177,7 @@ impl Function { /// Undoes variable splitting performed with [Function::split_variable]. The given `var` /// must be the variable unique to the definition and should be obtained by using - /// [crate::medium_level_il::MediumLevelILInstruction::get_split_var_for_definition] at the definition site. + /// [crate::medium_level_il::MediumLevelILInstruction::split_var_for_definition] at the definition site. /// /// * `var` - variable to unsplit pub fn unsplit_variable(&self, var: &Variable) { -- cgit v1.3.1