Skip to content

Commit 633f12e

Browse files
committed
fix typo
1 parent fb465d5 commit 633f12e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

benchmarking/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1172,7 +1172,7 @@ macro_rules! impl_benchmark_test_suite {
11721172
$crate::BenchmarkError::Override(_) => {
11731173
// This is still considered a success condition.
11741174
$crate::log::error!(
1175-
"WARNING: benchmark error overrided - {}",
1175+
"WARNING: benchmark error overridden - {}",
11761176
$crate::str::from_utf8(benchmark_name)
11771177
.expect("benchmark name is always a valid string!"),
11781178
);
@@ -1300,7 +1300,7 @@ macro_rules! add_benchmark {
13001300
Err($crate::BenchmarkError::Override(mut result)) => {
13011301
// Insert override warning as the first storage key.
13021302
$crate::log::error!(
1303-
"WARNING: benchmark error overrided - {}",
1303+
"WARNING: benchmark error overridden - {}",
13041304
$crate::str::from_utf8(benchmark)
13051305
.expect("benchmark name is always a valid string!")
13061306
);

payments/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ pub mod pallet {
400400
}
401401

402402
/// Allow the creator of a payment to initiate a refund that will return
403-
/// the funds after a configured amount of time that the reveiver has to
403+
/// the funds after a configured amount of time that the receiver has to
404404
/// react and oppose the request
405405
#[pallet::call_index(4)]
406406
#[pallet::weight(T::WeightInfo::request_refund())]

0 commit comments

Comments
 (0)