From 0c79b842b638927c182e6cce8b607fd865ba0e92 Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Sat, 4 Jan 2025 17:00:08 +0100 Subject: [PATCH] docs: typos --- crates/sol-macro-input/src/attr.rs | 2 +- crates/sol-types/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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.