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 two typos in package org.web3j.abi. #2045

Merged
merged 1 commit into from
Apr 24, 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
2 changes: 1 addition & 1 deletion abi/src/main/java/org/web3j/abi/TypeDecoder.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
* documented, but is the reverse of the encoding details located <a
* href="https://github.com/ethereum/wiki/wiki/Ethereum-Contract-ABI">here</a>.
*
* <p>The public API is composed of "decode*" methods and provides backward-compatbility. See
* <p>The public API is composed of "decode*" methods and provides backward-compatibility. See
* https://github.com/web3j/web3j/issues/1591 for a discussion about decoding and possible
* improvements.
*/
Expand Down
2 changes: 1 addition & 1 deletion abi/src/main/java/org/web3j/abi/TypeReference.java
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ TypeReference getSubTypeReference() {
}

public int compareTo(TypeReference<T> o) {
// taken from the blog post comments - this results in an errror if the
// taken from the blog post comments - this results in an error if the
// type parameter is left out.
return 0;
}
Expand Down
Loading