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 grammatical and spelling errors in documentation #521

Merged
merged 3 commits into from
Dec 2, 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 bindings/java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ make build
```

This will install the shared library in `src/main/resources/ethereum/ckzg4844/lib` with a folder
structure and name according your OS.
structure and name according to your OS.

All variables which could be passed to the `make` command and the defaults can be found in
the [Makefile](./Makefile).
Expand All @@ -28,4 +28,4 @@ make test
## Public Maven Repo

The library which uses this binding and publishes a package to a [public maven repo](https://central.sonatype.com/artifact/io.consensys.protocols/jc-kzg-4844)
is [jc-kzg-4844](https://github.com/ConsenSys/jc-kzg-4844).
is [jc-kzg-4844](https://github.com/ConsenSys/jc-kzg-4844).
2 changes: 1 addition & 1 deletion bindings/node.js/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ computeBlobKzgProof(

```ts
/**
* Verify a KZG poof claiming that `p(z) == y`.
* Verify a KZG proof claiming that `p(z) == y`.
*
* @param {Bytes48} commitmentBytes - The serialized commitment corresponding to
* polynomial p(x)
Expand Down
2 changes: 1 addition & 1 deletion bindings/rust/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ fn make_bindings(
.blocklist_type("FILE")
// Inject rust code using libc's FILE
.raw_line("use libc::FILE;")
// Do no generate layout tests.
// Do not generate layout tests.
.layout_tests(false)
// Extern functions do not need individual extern blocks.
.merge_extern_blocks(true)
Expand Down
Loading