From 61416fdb0be19f7ac8ad600470a0a5db9426641d Mon Sep 17 00:00:00 2001 From: Zhang Junyu Date: Sun, 14 Apr 2024 05:28:45 +0000 Subject: [PATCH] fix typo --- crates/zkwasm/src/error.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/zkwasm/src/error.rs b/crates/zkwasm/src/error.rs index a8a295c81..b7151b5b7 100644 --- a/crates/zkwasm/src/error.rs +++ b/crates/zkwasm/src/error.rs @@ -10,8 +10,8 @@ pub enum ExecutionError {} pub enum BuildingCircuitError { #[error("Only support single slice for non-continuation mode but {0} provided. You could increase K or enable continuation feature.")] MultiSlicesNotSupport(usize), - #[error("Allocated pages({0}) exceed the limit({1}). Current K is {2}, consider increase the circuit size K.")] + #[error("Allocated pages({0}) exceed the limit({1}). Current K is {2}, consider increasing the circuit size K.")] PagesExceedLimit(u32, u32, u32), - #[error("Etable entries({0}) exceed the limit({1}). Current K is {2}, consider increase the circuit size K.")] + #[error("Etable entries({0}) exceed the limit({1}). Current K is {2}, consider increasing the circuit size K.")] EtableEntriesExceedLimit(u32, u32, u32), }