Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #541

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion book/src/future/proof-size-breakdown.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ and one attests to the validity of initialization of memory plus a final pass ov
The reason we do not run these grand products "together as one big grand product" is they are
each potentially of different sizes,
and it is annoying (though possible) to "batch prove" differently-sized grand products together.
However, a relatively easy way to get down to 3 grand prodcuts is to set the memory size
However, a relatively easy way to get down to 3 grand products is to set the memory size
in each of the three categories above to equal the number of reads/writes. This simply involves
padding the memory with zeros to make it equal in size to
the number of reads/writes into the memory (i.e., NUM_CYCLES). Doing this will not substantially increase
Expand Down
2 changes: 1 addition & 1 deletion jolt-core/src/jolt/instruction/remu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use crate::jolt::instruction::{
JoltInstruction,
};

/// Perform unsigned divison and return remainder
/// Perform unsigned division and return remainder
pub struct REMUInstruction<const WORD_SIZE: usize>;

impl<const WORD_SIZE: usize> VirtualInstructionSequence for REMUInstruction<WORD_SIZE> {
Expand Down