diff --git a/barretenberg/cpp/src/barretenberg/smt_verification/circuit/circuit_base.hpp b/barretenberg/cpp/src/barretenberg/smt_verification/circuit/circuit_base.hpp index 815843336565..be7a51d342f2 100644 --- a/barretenberg/cpp/src/barretenberg/smt_verification/circuit/circuit_base.hpp +++ b/barretenberg/cpp/src/barretenberg/smt_verification/circuit/circuit_base.hpp @@ -30,7 +30,7 @@ class CircuitBase { std::vector variables; // circuit witness std::vector public_inps; // public inputs from the circuit std::unordered_map variable_names; // names of the variables - std::unordered_map variable_names_inverse; // inverse map of the previous memeber + std::unordered_map variable_names_inverse; // inverse map of the previous member std::unordered_map symbolic_vars; // all the symbolic variables from the circuit std::vector real_variable_index; // indexes for assert_equal'd wires std::vector real_variable_tags; // tags of the variables in the circuit @@ -81,4 +81,4 @@ class CircuitBase { virtual ~CircuitBase() = default; }; -}; // namespace smt_circuit \ No newline at end of file +}; // namespace smt_circuit