diff --git a/crates/sol-macro-input/src/attr.rs b/crates/sol-macro-input/src/attr.rs index a928cbf2b..b7135647e 100644 --- a/crates/sol-macro-input/src/attr.rs +++ b/crates/sol-macro-input/src/attr.rs @@ -95,7 +95,7 @@ pub struct SolAttrs { /// UNIMPLEMENTED: `#[sol(rename = "new_name")]` pub rename: Option, // TODO: Implement - /// UNIMPLMENTED: `#[sol(rename_all = "camelCase")]` + /// UNIMPLEMENTED: `#[sol(rename_all = "camelCase")]` pub rename_all: Option, /// `#[sol(bytecode = "0x1234")]` diff --git a/crates/sol-types/README.md b/crates/sol-types/README.md index 0d320c0f2..3b04caaa0 100644 --- a/crates/sol-types/README.md +++ b/crates/sol-types/README.md @@ -115,7 +115,7 @@ assert_eq!(mvt.abi_encode(), sol_data::Uint::<256>::abi_encode(&U256::from(1))); ## Tokenization/Detokenization The process of converting from a Rust type to a to an abi token is called -"Tokenization". Typical users will not access tokenizaiton directly. +"Tokenization". Typical users will not access tokenization directly. Power users should use the [`SolType::tokenize()`] and [`SolType::detokenize()`] methods.