diff --git a/ledger/puzzle/src/partial_solution/bytes.rs b/ledger/puzzle/src/partial_solution/bytes.rs index 5434a25fc4..8c1137ba2e 100644 --- a/ledger/puzzle/src/partial_solution/bytes.rs +++ b/ledger/puzzle/src/partial_solution/bytes.rs @@ -26,7 +26,7 @@ impl FromBytes for PartialSolution { } impl ToBytes for PartialSolution { - /// Writes the parital solution to the buffer. + /// Writes the partial solution to the buffer. fn write_le(&self, mut writer: W) -> IoResult<()> { self.epoch_hash.write_le(&mut writer)?; self.address.write_le(&mut writer)?; diff --git a/synthesizer/process/src/tests/test_credits.rs b/synthesizer/process/src/tests/test_credits.rs index f62fa8767a..953733219f 100644 --- a/synthesizer/process/src/tests/test_credits.rs +++ b/synthesizer/process/src/tests/test_credits.rs @@ -1692,7 +1692,7 @@ fn test_bond_validator_fails_if_unbonding_state() { ); assert!(rebonding_result.is_err()); - // Ensure the error wasn't due to insufficent balance + // Ensure the error wasn't due to insufficient balance let validator_balance = account_balance(&store, validator_address).unwrap(); assert!(validator_balance > MIN_VALIDATOR_STAKE); diff --git a/synthesizer/process/src/verify_fee.rs b/synthesizer/process/src/verify_fee.rs index 71b92dafc5..f9d21b63dc 100644 --- a/synthesizer/process/src/verify_fee.rs +++ b/synthesizer/process/src/verify_fee.rs @@ -164,7 +164,7 @@ impl Process { } lap!(timer, "Verify the inputs"); - // Ensure there are is one output. + // Ensure there is one output. ensure!( fee.outputs().len() == 1, "The number of outputs in the fee transition should be 1, found {}",