Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
emesare committed Jan 17, 2025
1 parent 2b7557d commit 02f6be8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rust/src/hlil/instruction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -976,7 +976,7 @@ impl HighLevelILInstruction {
fn lift_operand(&self, expr_idx: usize) -> Box<HighLevelILLiftedInstruction> {
// TODO: UGH, if your gonna call it expr_idx, call the instruction and expression!!!!!
// TODO: We dont even need to say instruction in the type!
// TODO: IF you want to have an instruction type, there needs to be a seperate expression type
// TODO: IF you want to have an instruction type, there needs to be a separate expression type
// TODO: See the lowlevelil module.
let expr_idx_is_really_instr_idx = HighLevelInstructionIndex(expr_idx);
let operand_instr = self
Expand Down
2 changes: 1 addition & 1 deletion rust/src/hlil/lift.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub enum HighLevelILLiftedOperand {

// TODO: UGH, if your gonna call it expr_idx, call the instruction and expression!!!!!
// TODO: We dont even need to say instruction in the type!
// TODO: IF you want to have an instruction type, there needs to be a seperate expression type
// TODO: IF you want to have an instruction type, there needs to be a separate expression type
// TODO: See the lowlevelil module.
#[derive(Clone, Debug, PartialEq)]
pub struct HighLevelILLiftedInstruction {
Expand Down
2 changes: 1 addition & 1 deletion rust/src/mlil/instruction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1453,7 +1453,7 @@ impl MediumLevelILInstruction {
fn lift_operand(&self, expr_idx: usize) -> Box<MediumLevelILLiftedInstruction> {
// TODO: UGH, if your gonna call it expr_idx, call the instruction and expression!!!!!
// TODO: We dont even need to say instruction in the type!
// TODO: IF you want to have an instruction type, there needs to be a seperate expression type
// TODO: IF you want to have an instruction type, there needs to be a separate expression type
// TODO: See the lowlevelil module.
let expr_idx_is_really_instr_idx = MediumLevelInstructionIndex(expr_idx);
let operand_instr = self
Expand Down

0 comments on commit 02f6be8

Please sign in to comment.