diff --git a/CODEOWNERS b/CODEOWNERS index 8564f62f03..4f6bce8172 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -13,7 +13,7 @@ # - Multiple owners are supported. # - Either handle (e.g, @github_user or @github_org/team) or email can be used. Keep in mind, # that handles might work better because they are more recognizable on GitHub, -# eyou can use them for mentioning unlike an email. +# you can use them for mentioning unlike an email. # - The latest matching rule, if multiple, takes precedence. # main codeowner diff --git a/historic/src/client/offline_client.rs b/historic/src/client/offline_client.rs index 91e4cb22f0..ff424d4f8c 100644 --- a/historic/src/client/offline_client.rs +++ b/historic/src/client/offline_client.rs @@ -62,7 +62,7 @@ pub trait OfflineClientAtBlockT<'client, T: Config + 'client> { // private to allow changes if possible. #[doc(hidden)] pub struct OfflineClientAtBlock<'client, T: Config + 'client> { - /// The configuration for thie chain. + /// The configuration for this chain. config: &'client T, /// Historic types to use at this block number. legacy_types: TypeRegistrySet<'client>, diff --git a/historic/src/client/online_client.rs b/historic/src/client/online_client.rs index bb0c4a28e3..532260f368 100644 --- a/historic/src/client/online_client.rs +++ b/historic/src/client/online_client.rs @@ -133,7 +133,7 @@ impl OnlineClient { }; let mut historic_types = config.legacy_types_for_spec_version(spec_version); - // The metadata can be used to construct call and event types instead of us havign to hardcode them all for every spec version: + // The metadata can be used to construct call and event types instead of us having to hardcode them all for every spec version: let types_from_metadata = frame_decode::helpers::type_registry_from_metadata_any(&metadata) .map_err( |parse_error| OnlineClientAtBlockError::CannotInjectMetadataTypes { parse_error }, diff --git a/metadata/src/utils/validation.rs b/metadata/src/utils/validation.rs index 1944513280..a48e9c0a1d 100644 --- a/metadata/src/utils/validation.rs +++ b/metadata/src/utils/validation.rs @@ -394,7 +394,7 @@ pub fn get_runtime_api_hash(runtime_api: &RuntimeApiMethodMetadata) -> Hash { /// Obtain the hash of all of a runtime API trait, including all of its methods. pub fn get_runtime_apis_hash(trait_metadata: RuntimeApiMetadata) -> Hash { // Each API is already hashed considering the trait name, so we don't need - // to consider thr trait name again here. + // to consider the trait name again here. trait_metadata .methods() .fold([0u8; HASH_LEN], |bytes, method_metadata| { @@ -431,7 +431,7 @@ pub fn get_view_function_hash(view_function: &ViewFunctionMetadata) -> Hash { /// Obtain the hash of all of the view functions in a pallet, including all of its methods. fn get_pallet_view_functions_hash(pallet_metadata: &PalletMetadata) -> Hash { // Each API is already hashed considering the trait name, so we don't need - // to consider thr trait name again here. + // to consider the trait name again here. pallet_metadata .view_functions() .fold([0u8; HASH_LEN], |bytes, method_metadata| { diff --git a/subxt/src/error/dispatch_error.rs b/subxt/src/error/dispatch_error.rs index 0d307e7f44..c63211fbbf 100644 --- a/subxt/src/error/dispatch_error.rs +++ b/subxt/src/error/dispatch_error.rs @@ -118,7 +118,7 @@ pub enum ArithmeticError { DivisionByZero, } -/// An error relating to thr transactional layers when dispatching a transaction. +/// An error relating to the transactional layers when dispatching a transaction. #[derive(scale_decode::DecodeAsType, Debug, thiserror::Error, PartialEq, Eq)] #[non_exhaustive] pub enum TransactionalError {