From a389cbe81c36226874f8b66bcebf9636db9f6ff8 Mon Sep 17 00:00:00 2001 From: Tom French Date: Thu, 11 Jan 2024 11:11:23 +0000 Subject: [PATCH] chore: spelling --- .../src/barretenberg/dsl/acir_format/acir_to_constraint_buf.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/barretenberg/cpp/src/barretenberg/dsl/acir_format/acir_to_constraint_buf.hpp b/barretenberg/cpp/src/barretenberg/dsl/acir_format/acir_to_constraint_buf.hpp index 4dc4a2eddf9..491c2e79de4 100644 --- a/barretenberg/cpp/src/barretenberg/dsl/acir_format/acir_to_constraint_buf.hpp +++ b/barretenberg/cpp/src/barretenberg/dsl/acir_format/acir_to_constraint_buf.hpp @@ -345,7 +345,7 @@ WitnessVector witness_buf_to_witness_data(std::vector const& buf) size_t index = 1; for (auto& e : w.value) { // ACIR uses a sparse format for WitnessMap where unused witness indices may be left unassigned. - // To ensure that witnesses sit at the correct indicies in the `WitnessVector`, we fill any indices + // To ensure that witnesses sit at the correct indices in the `WitnessVector`, we fill any indices // which do not exist within the `WitnessMap` with the dummy value of zero. while (index < e.first.value) { wv.push_back(barretenberg::fr(0));