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

docs fix spelling issues #348

Merged
merged 2 commits into from
Dec 16, 2024
Merged
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
4 changes: 2 additions & 2 deletions fri/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ FRI proofs are verified by a [FriVerifier](src/verifier/mod.rs) as follows:
3. Finally, the query phase of the FRI protocol should be executed via `verify()` function. Note that query values at the first FRI layer are provided to the `verify()` function directly. The values at remaining layers, the verifier reads from the specified verifier channel.

## Protocol parameters
This crates supports executing FRI protocol with dynamically configurable parameters including:
This crate supports executing FRI protocol with dynamically configurable parameters including:

* Base STARK field,
* Extension field,
Expand Down Expand Up @@ -48,4 +48,4 @@ When this crate is compiled with `concurrent` feature enabled, `FriProver` will
License
-------

This project is [MIT licensed](../LICENSE).
This project is [MIT licensed](../LICENSE).
2 changes: 1 addition & 1 deletion math/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
This crate contains modules with mathematical operations needed in STARK proof generation and verification.

## Finite field
[Finite field](src/field) module implements arithmetic operations in STARK-friendly finite fields. The operation include:
[Finite field](src/field) module implements arithmetic operations in STARK-friendly finite fields. The operations include:

* Basic arithmetic operations: addition, multiplication, subtraction, division, inversion.
* Drawing random and pseudo-random elements from the field.
Expand Down
Loading