From f0fb09772e3dd970ff7529c19fcb25911e084791 Mon Sep 17 00:00:00 2001 From: forcedebug Date: Sun, 5 Jan 2025 20:12:37 +0800 Subject: [PATCH] chore: fix some typos in comment Signed-off-by: forcedebug --- crates/core/machine/src/syscall/precompiles/uint256/air.rs | 2 +- crates/recursion/circuit/src/machine/compress.rs | 2 +- examples/json/lib/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/core/machine/src/syscall/precompiles/uint256/air.rs b/crates/core/machine/src/syscall/precompiles/uint256/air.rs index 54e0925f9e..3bb2c91cc2 100644 --- a/crates/core/machine/src/syscall/precompiles/uint256/air.rs +++ b/crates/core/machine/src/syscall/precompiles/uint256/air.rs @@ -290,7 +290,7 @@ where local.is_real, ); - // Verify the range of the output if the moduls is not zero. Also, check the value of + // Verify the range of the output if the modules is not zero. Also, check the value of // modulus_is_not_zero. local.output_range_check.eval( builder, diff --git a/crates/recursion/circuit/src/machine/compress.rs b/crates/recursion/circuit/src/machine/compress.rs index fe99eb43c2..478032e918 100644 --- a/crates/recursion/circuit/src/machine/compress.rs +++ b/crates/recursion/circuit/src/machine/compress.rs @@ -216,7 +216,7 @@ where *digest = first_digest; } - // Initiallize start pc. + // Initialize start pc. compress_public_values.start_pc = current_public_values.start_pc; pc = current_public_values.start_pc; diff --git a/examples/json/lib/src/lib.rs b/examples/json/lib/src/lib.rs index 2d1a387d5e..51bafd4dad 100644 --- a/examples/json/lib/src/lib.rs +++ b/examples/json/lib/src/lib.rs @@ -1,4 +1,4 @@ -// Custom structs with seralize/deserialize. +// Custom structs with serialize/deserialize. use serde::{Deserialize, Serialize};