Skip to content

Commit 02f6be8

Browse files
committed
Fix typos
1 parent 2b7557d commit 02f6be8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

rust/src/hlil/instruction.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -976,7 +976,7 @@ impl HighLevelILInstruction {
976976
fn lift_operand(&self, expr_idx: usize) -> Box<HighLevelILLiftedInstruction> {
977977
// TODO: UGH, if your gonna call it expr_idx, call the instruction and expression!!!!!
978978
// TODO: We dont even need to say instruction in the type!
979-
// TODO: IF you want to have an instruction type, there needs to be a seperate expression type
979+
// TODO: IF you want to have an instruction type, there needs to be a separate expression type
980980
// TODO: See the lowlevelil module.
981981
let expr_idx_is_really_instr_idx = HighLevelInstructionIndex(expr_idx);
982982
let operand_instr = self

rust/src/hlil/lift.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pub enum HighLevelILLiftedOperand {
2323

2424
// TODO: UGH, if your gonna call it expr_idx, call the instruction and expression!!!!!
2525
// TODO: We dont even need to say instruction in the type!
26-
// TODO: IF you want to have an instruction type, there needs to be a seperate expression type
26+
// TODO: IF you want to have an instruction type, there needs to be a separate expression type
2727
// TODO: See the lowlevelil module.
2828
#[derive(Clone, Debug, PartialEq)]
2929
pub struct HighLevelILLiftedInstruction {

rust/src/mlil/instruction.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1453,7 +1453,7 @@ impl MediumLevelILInstruction {
14531453
fn lift_operand(&self, expr_idx: usize) -> Box<MediumLevelILLiftedInstruction> {
14541454
// TODO: UGH, if your gonna call it expr_idx, call the instruction and expression!!!!!
14551455
// TODO: We dont even need to say instruction in the type!
1456-
// TODO: IF you want to have an instruction type, there needs to be a seperate expression type
1456+
// TODO: IF you want to have an instruction type, there needs to be a separate expression type
14571457
// TODO: See the lowlevelil module.
14581458
let expr_idx_is_really_instr_idx = MediumLevelInstructionIndex(expr_idx);
14591459
let operand_instr = self

0 commit comments

Comments
 (0)