diff --git a/starky/src/interpreter.rs b/starky/src/interpreter.rs index 443b75d6..4c32c7ef 100644 --- a/starky/src/interpreter.rs +++ b/starky/src/interpreter.rs @@ -298,7 +298,7 @@ fn set_ref( "tmp" => Expr::new(Ops::Refer, vec!["tmp".to_string()], vec![], vec![r.id, 0, modulas, 0]), "q" => { if dom == "n" { - panic!("Accesssing q in domain n"); + panic!("Accessing q in domain n"); } else if dom == "2ns" { if starkinfo.q_dim == 3 { Expr::new( @@ -323,7 +323,7 @@ fn set_ref( } "f" => { if dom == "n" { - panic!("Accesssing q in domain n"); + panic!("Accessing q in domain n"); } else if dom == "2ns" { Expr::new( Ops::Refer, diff --git a/starky/src/pil2circom.rs b/starky/src/pil2circom.rs index 543e6940..500d4016 100644 --- a/starky/src/pil2circom.rs +++ b/starky/src/pil2circom.rs @@ -11,7 +11,7 @@ pub struct StarkOption { pub enable_input: bool, // normalize the proof pub verkey_input: bool, - // aggragte the proof + // aggregate the proof pub agg_stage: bool, // generate the main component in Circom pub skip_main: bool,