diff --git a/barretenberg/cpp/src/barretenberg/proof_system/relations/gen_perm_sort_relation.hpp b/barretenberg/cpp/src/barretenberg/proof_system/relations/gen_perm_sort_relation.hpp index a6729594a13..43d498a14a1 100644 --- a/barretenberg/cpp/src/barretenberg/proof_system/relations/gen_perm_sort_relation.hpp +++ b/barretenberg/cpp/src/barretenberg/proof_system/relations/gen_perm_sort_relation.hpp @@ -207,20 +207,20 @@ template class GoblinTranslatorGenPermSortRelationImpl { tmp_5 *= scaling_factor; std::get<4>(accumulators) += tmp_5; - // Contirbution (6) (Contributions 6-10 ensure that the last value is the designated maximum value. We don't + // Contribution (6) (Contributions 6-10 ensure that the last value is the designated maximum value. We don't // need to constrain the first value to be 0, because the shift mechanic does this for us) std::get<5>(accumulators) += lagrange_last * (ordered_range_constraints_0 + maximum_sort_value) * scaling_factor; - // Contirbution (7) + // Contribution (7) std::get<6>(accumulators) += lagrange_last * (ordered_range_constraints_1 + maximum_sort_value) * scaling_factor; - // Contirbution (8) + // Contribution (8) std::get<7>(accumulators) += lagrange_last * (ordered_range_constraints_2 + maximum_sort_value) * scaling_factor; - // Contirbution (9) + // Contribution (9) std::get<8>(accumulators) += lagrange_last * (ordered_range_constraints_3 + maximum_sort_value) * scaling_factor; - // Contirbution (10) + // Contribution (10) std::get<9>(accumulators) += lagrange_last * (ordered_range_constraints_4 + maximum_sort_value) * scaling_factor; };