diff --git a/crates/build-guest/src/verifier/io_converter.rs b/crates/build-guest/src/verifier/io_converter.rs index bed81a2b..f3484b83 100644 --- a/crates/build-guest/src/verifier/io_converter.rs +++ b/crates/build-guest/src/verifier/io_converter.rs @@ -5,7 +5,7 @@ use p3_field::FieldAlgebra; use super::asm_utils::*; -// This function assumes the pi is published in sequencial order +// This function assumes the pi is published in sequential order // `convert_publish_v1` was a more general version, but now `castf` cannot write to register, // so I have to use the `idx` here. pub fn convert_publish(op: Instruction, idx: usize) -> Vec> { diff --git a/crates/circuits/types/src/chunk/public_inputs.rs b/crates/circuits/types/src/chunk/public_inputs.rs index 1682e713..0ba0b56e 100644 --- a/crates/circuits/types/src/chunk/public_inputs.rs +++ b/crates/circuits/types/src/chunk/public_inputs.rs @@ -173,7 +173,7 @@ pub struct ChunkInfo { #[rkyv()] pub withdraw_root: B256, /// Digest of L1 message txs force included in the chunk. - /// It is a legacy field and can be omitted in new defination + /// It is a legacy field and can be omitted in new definition #[rkyv()] #[serde(default)] pub data_hash: B256, diff --git a/crates/prover/src/task/batch.rs b/crates/prover/src/task/batch.rs index aaa76505..73b6b4d3 100644 --- a/crates/prover/src/task/batch.rs +++ b/crates/prover/src/task/batch.rs @@ -19,7 +19,7 @@ use crate::{ /// Define variable batch header type, since BatchHeaderV6 can not /// be decoded as V7 we can always has correct deserialization /// Notice: V6 header MUST be put above V7 since untagged enum -/// try to decode each defination in order +/// try to decode each definition in order #[derive(Clone, serde::Deserialize, serde::Serialize)] #[serde(untagged)] pub enum BatchHeaderV {