From 08c966540e016c0f4a883c765aa1d1817bc92854 Mon Sep 17 00:00:00 2001 From: Rumata888 Date: Tue, 30 Jan 2024 15:35:45 +0000 Subject: [PATCH] Typo fix --- .../src/barretenberg/honk/proof_system/permutation_library.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/barretenberg/cpp/src/barretenberg/honk/proof_system/permutation_library.hpp b/barretenberg/cpp/src/barretenberg/honk/proof_system/permutation_library.hpp index d0cf718fdfb..ddde3d603fe 100644 --- a/barretenberg/cpp/src/barretenberg/honk/proof_system/permutation_library.hpp +++ b/barretenberg/cpp/src/barretenberg/honk/proof_system/permutation_library.hpp @@ -190,7 +190,7 @@ template void compute_concatenated_pol // Resulting concatenated polynomials auto targets = proving_key->get_concatenated_constraints(); - // Targets have to be full-sized polynomials. We can comput the mini circuit size from them by dividing by + // Targets have to be full-sized polynomials. We can compute the mini circuit size from them by dividing by // concatenation index const size_t MINI_CIRCUIT_SIZE = targets[0].size() / Flavor::CONCATENATION_INDEX; ASSERT(MINI_CIRCUIT_SIZE * Flavor::CONCATENATION_INDEX == targets[0].size());