Skip to content

Commit c36c3e0

Browse files
NeoByteXxalv-around
authored andcommitted
Grammar Fixes (#1381)
* Update keccak.md * Update overview.md * Update pairing.md
1 parent cf69228 commit c36c3e0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

book/src/custom-extensions/keccak.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The functional part is provided by the `openvm-keccak-guest` crate, which is a g
55

66
## Functions for guest code
77

8-
The OpenVM Keccak256 Guest extension provides two functions for using in your guest code:
8+
The OpenVM Keccak256 Guest extension provides two functions for use in your guest code:
99

1010
- `keccak256(input: &[u8]) -> [u8; 32]`: Computes the Keccak-256 hash of the input data and returns it as an array of 32 bytes.
1111
- `set_keccak256(input: &[u8], output: &mut [u8; 32])`: Sets the output to the Keccak-256 hash of the input data into the provided output buffer.

book/src/custom-extensions/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Our design for the configuration procedure above was inspired by the [EVMMAX pro
2525

2626
## Configuration
2727

28-
To use these extensions, you must populate a `openvm.toml` in your package root directory (where the `Cargo.toml` file is located).
28+
To use these extensions, you must populate an `openvm.toml` in your package root directory (where the `Cargo.toml` file is located).
2929
We will explain in each extension how to configure the `openvm.toml` file.
3030

3131
The template `openvm.toml` file is as follows:

book/src/custom-extensions/pairing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ We also have access to each of the specific functions that the pairing check uti
6262

6363
### Multi-Miller loop
6464

65-
The multi-Miller loop requires the MultiMillerLoop trait can also be ran separately via:
65+
The multi-Miller loop requires the MultiMillerLoop trait can also be run separately via:
6666

6767
```rust
6868
let f = Bls12_381::multi_miller_loop(

0 commit comments

Comments
 (0)