Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
junyu0312 committed Apr 14, 2024
1 parent 1558530 commit 61416fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/zkwasm/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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),
}

0 comments on commit 61416fd

Please sign in to comment.