docs:fix spelling issues (#1699)

* Update CHANGELOG.md

* Update mod.rs

* Update runtime_apis.rs

* Update setup_client_custom_rpc.rs

* Update subxt/examples/setup_client_custom_rpc.rs

Co-authored-by: James Wilson <james@jsdw.me>

* Update subxt/examples/setup_client_custom_rpc.rs

Co-authored-by: James Wilson <james@jsdw.me>

---------

Co-authored-by: James Wilson <james@jsdw.me>
This commit is contained in:
Elias Rad
2024-08-05 11:35:23 +03:00
committed by GitHub
parent 11a99e1ee6
commit a936675673
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ fn generate_runtime_api(
type_gen: &TypeGenerator,
crate_path: &syn::Path,
) -> Result<(TokenStream2, TokenStream2), CodegenError> {
// Trait name must remain as is (upper case) to identity the runtime call.
// Trait name must remain as is (upper case) to identify the runtime call.
let trait_name_str = api.name();
// The snake case for the trait name.
let trait_name_snake = format_ident!("{}", api.name().to_snake_case());