diff --git a/README.md b/README.md index 9f706934e2..aa75e0ed41 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ let mut evm = evm.with_inspector(tracer); let out = evm.inspect_tx(tx); ``` -The Evm Framework API is somewhat complex to use, but this document provides a detailed explanation. It enables users to extend logic, incorporate various context types, and offers built-in support for inspection. For a practical example, you can refer to the [op-revm crate](https://github.com/op-rs/op-revm). +The EVM Framework API is somewhat complex to use, but this document provides a detailed explanation. It enables users to extend logic, incorporate various context types, and offers built-in support for inspection. For a practical example, you can refer to the [op-revm crate](https://github.com/op-rs/op-revm). ### Users: diff --git a/book/src/contact.md b/book/src/contact.md index ff8e628f92..bced995c04 100644 --- a/book/src/contact.md +++ b/book/src/contact.md @@ -3,7 +3,7 @@ The git repository can be found at [https://github.com/bluealloy/revm/](https://github.com/bluealloy/revm/) -For questions please open a github issue or join the public telegram group: [https://t.me/+Ig4WDWOzikA3MzA0](https://t.me/+Ig4WDWOzikA3MzA0) +For questions please open a github issue or join the public [telegram group](https://t.me/+Ig4WDWOzikA3MzA0) ### Licence diff --git a/crates/revm/Cargo.toml b/crates/revm/Cargo.toml index b3d92d53ce..1b5ad65728 100644 --- a/crates/revm/Cargo.toml +++ b/crates/revm/Cargo.toml @@ -95,10 +95,10 @@ optional_no_base_fee = ["context/optional_no_base_fee"] # Precompiles features: Please look at the comments in `precompile` crate for more information. -secp256k1 = ["precompile/secp256k1"] # See comments in `precompile` +secp256k1 = ["precompile/secp256k1"] # See comments in `precompile` use it with caution c-kzg = ["precompile/c-kzg"] -# blst will enabled both for bls precompiles and for kzg precompile. +# blst will be enabled both for bls precompiles and for kzg precompile. blst = ["precompile/blst"] bn = ["precompile/bn"] asm-sha2 = ["precompile/asm-sha2"] @@ -108,5 +108,5 @@ asm-sha2 = ["precompile/asm-sha2"] portable = ["precompile/portable"] # use gmp for modexp precompile. -# It is faster library but licences as GPL code, if enabled please make sure to follow the license. +# It is faster library but licenced as GPL code, if enabled please make sure to follow the license. gmp = ["precompile/gmp"]