diff --git a/crates/boundless-cli/src/commands/rewards/claim_mining_rewards.rs b/crates/boundless-cli/src/commands/rewards/claim_mining_rewards.rs index 7dac3b4542..39e3add857 100644 --- a/crates/boundless-cli/src/commands/rewards/claim_mining_rewards.rs +++ b/crates/boundless-cli/src/commands/rewards/claim_mining_rewards.rs @@ -66,8 +66,8 @@ pub struct RewardsClaimMiningRewards { /// Maximum number of days to consider for the reward claim /// - /// This effects how far back in history this command will search for log update events for the - /// rewards claim. If all log update events to claim occured in fewer than the specified number + /// This affects how far back in history this command will search for log update events for the + /// rewards claim. If all log update events to claim occurred in fewer than the specified number /// of days, this command will not scan for events in the full range. #[arg(long, default_value_t = 30)] days: u32, @@ -181,7 +181,7 @@ impl RewardsClaimMiningRewards { return Ok(()); } - // Search for the WorkLogUpdated events, and the the EpochFinalized events + // Search for the WorkLogUpdated events, and the EpochFinalized events display.subsection("Searching for claimable work"); display.note(&format!( "Scanning past {} days for work log updates...", diff --git a/crates/boundless-market/src/request_builder/mod.rs b/crates/boundless-market/src/request_builder/mod.rs index 227a2ac823..9b05692f7d 100644 --- a/crates/boundless-market/src/request_builder/mod.rs +++ b/crates/boundless-market/src/request_builder/mod.rs @@ -602,7 +602,7 @@ impl RequestParams { /// Request a stand-alone Groth16 proof for this request. /// - /// This is a convinience method to set the selector on the requirements. Note that calling + /// This is a convenience method to set the selector on the requirements. Note that calling /// [RequestParams::with_requirements] after this function will overwrite the change. pub fn with_groth16_proof(self) -> Self { let mut requirements = self.requirements; @@ -615,7 +615,7 @@ impl RequestParams { /// Request a stand-alone Blake3 Groth16 proof for this request. /// - /// This is a convinience method to set the selector on the requirements. Note that calling + /// This is a convenience method to set the selector on the requirements. Note that calling /// [RequestParams::with_requirements] after this function will overwrite the change. pub fn with_blake3_groth16_proof(self) -> Self { let mut requirements = self.requirements;