diff --git a/pallets/gear-messenger/src/tests.rs b/pallets/gear-messenger/src/tests.rs index 4a63541fc00..888f84fa8e1 100644 --- a/pallets/gear-messenger/src/tests.rs +++ b/pallets/gear-messenger/src/tests.rs @@ -244,7 +244,7 @@ fn queue_works() { assert_eq!(DequeuedOf::get(), 2); assert_eq!(QueueOf::len(), 2); - // Push front used only for requeueing element, + // Push front used only for requeuing element, // which was already in queue in current block, // because it decreased dequeued amount. assert!(QueueProcessingOf::allowed()); diff --git a/pallets/gear/src/manager/journal.rs b/pallets/gear/src/manager/journal.rs index 79a3bdeddad..c18afd7dc82 100644 --- a/pallets/gear/src/manager/journal.rs +++ b/pallets/gear/src/manager/journal.rs @@ -505,7 +505,7 @@ where ); GasAllowanceOf::::decrease(gas_burned); - // TODO: #3112. Rework requeueing logic to avoid blocked queue. + // TODO: #3112. Rework requeuing logic to avoid blocked queue. QueueOf::::requeue(dispatch).unwrap_or_else(|e| { let err_msg = format!( "JournalHandler::stop_processing: failed requeuing message. Got error - {e:?}" diff --git a/utils/node-loader/src/batch_pool.rs b/utils/node-loader/src/batch_pool.rs index ad23c5836da..70a7826fccf 100644 --- a/utils/node-loader/src/batch_pool.rs +++ b/utils/node-loader/src/batch_pool.rs @@ -59,7 +59,7 @@ impl BatchPool { /// Consume `BatchPool` and spawn tasks. /// /// - `run_pool_task` - the main task for sending and processing batches. - /// - `inpect_crash_task` - background task monitors when message processing stops. + /// - `inspect_crash_task` - background task monitors when message processing stops. /// - `renew_balance_task` - periodically setting a new balance for the user account. /// /// Wait for any task to return result with `tokio::select!`.