diff --git a/compiler/src/intermediate_representation/translate.rs b/compiler/src/intermediate_representation/translate.rs index af67ed81c..1fbaec843 100644 --- a/compiler/src/intermediate_representation/translate.rs +++ b/compiler/src/intermediate_representation/translate.rs @@ -25,7 +25,7 @@ pub struct OutBoundsCheck{ pub struct SymbolInfo { access_instruction: InstructionPointer, dimensions: Vec, - size: usize, // needed, in case it is a bus to dont have to compute it again + size: usize, // needed, in case it is a bus to don't have to compute it again is_component: bool, is_bus: bool, bus_id: Option, diff --git a/constraint_generation/src/execute.rs b/constraint_generation/src/execute.rs index d644dedc2..08332b157 100644 --- a/constraint_generation/src/execute.rs +++ b/constraint_generation/src/execute.rs @@ -2665,7 +2665,7 @@ fn execute_conditional_statement( runtime.block_type = BlockType::Unknown; // TODO: here instead of executing both branches what we do is to store the values // that we assign in each one of the branches and assign later: if we assign in both - // of them a signal we return an error. If we assign in just one then we dont return error + // of them a signal we return an error. If we assign in just one then we don't return error // (maybe a warning indicating that the variable may not get assigned in the if)